diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-04-12 16:48:43 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-04-14 12:36:48 +0200 |
| commit | de62a5da0225b79fcf2460727bb7d765f8be2426 (patch) | |
| tree | 042c7cf1ee26f333df2081e711dc99ba6b599bae /client/causalloop.css | |
Initial implementation
Diffstat (limited to 'client/causalloop.css')
| -rw-r--r-- | client/causalloop.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/client/causalloop.css b/client/causalloop.css new file mode 100644 index 0000000..fbd6660 --- /dev/null +++ b/client/causalloop.css @@ -0,0 +1,31 @@ +.causalloop { + position: relative; +} +.causalloop .actions { + background-color: #fff; + opacity: 0; + transition: all 300ms; + position: absolute; + bottom: 0; + right: 0; + padding: 0 2px; +} +.causalloop .actions img { + height: 18px; + width: 18px; +} +.causalloop menu { + list-style: none; + padding: 0; +} +.causalloop menu li { display: inline-block; } +.causalloop:hover .actions { + opacity: 1; +} +.causalloop img { + width: 100%; +} + +.causalloop.thumbnail text:nth-of-type(n + 7) { + cursor: pointer; +} |