diff options
Diffstat (limited to 'client/wmap.css')
| -rw-r--r-- | client/wmap.css | 55 |
1 files changed, 24 insertions, 31 deletions
diff --git a/client/wmap.css b/client/wmap.css index 7f4cdfd..a524bcb 100644 --- a/client/wmap.css +++ b/client/wmap.css @@ -1,34 +1,27 @@ .wmap { - position: relative; - - .actions { - background-color: #fff; - opacity: 0; - transition: all 300ms; - position: absolute; - bottom: 0; - right: 0; - padding: 0 2px; - - img { - height: 18px; - width: 18px; - } - } - - menu { - list-style: none; - padding: 0; - - li { display: inline-block; } - } - - &:hover .actions { - opacity: 1; - } - - img { - width: 100%; - } +} +.wmap .actions { + background-color: #fff; + opacity: 0; + transition: all 300ms; + position: absolute; + bottom: 0; + right: 0; + padding: 0 2px; +} +.wmap .actions img { + height: 18px; + width: 18px; +} +.wmap menu { + list-style: none; + padding: 0; +} +.wmap menu li { display: inline-block; } +.wmap:hover .actions { + opacity: 1; +} +.wmap img { + width: 100%; } |