aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/dialog/index.html12
-rw-r--r--client/wmap.css34
2 files changed, 46 insertions, 0 deletions
diff --git a/client/dialog/index.html b/client/dialog/index.html
new file mode 100644
index 0000000..63d0c47
--- /dev/null
+++ b/client/dialog/index.html
@@ -0,0 +1,12 @@
+<!DOCTYPE HTML>
+
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Wmap Wardley Map</title>
+ </head>
+ <body>
+ <main></main>
+ </body>
+</html>
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%;
+ }
+}