diff options
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; +} |