aboutsummaryrefslogtreecommitdiff
path: root/client/wmap.css
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2025-12-22 11:29:53 +0100
committerRuben Beltran del Rio <jj@r.bdr.sh>2025-12-22 11:54:50 +0100
commitf29b392c6b68b7db98f5d6921ea588b559435f35 (patch)
tree4b475215124ddc5efca8fa70cee49b9e67529abf /client/wmap.css
Initial implementation1.0.0
Diffstat (limited to 'client/wmap.css')
-rw-r--r--client/wmap.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/client/wmap.css b/client/wmap.css
new file mode 100644
index 0000000..7f4cdfd
--- /dev/null
+++ b/client/wmap.css
@@ -0,0 +1,34 @@
+.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%;
+ }
+}