summaryrefslogtreecommitdiff
path: root/client/css
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-17 22:48:56 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-17 22:48:56 -0400
commit97c78292fef34a39552a4d983413b01e185a49aa (patch)
tree615c48125fe9a5a62b2d0826362dcbccf5721696 /client/css
parentlayout changed (diff)
downloadtuxman-97c78292fef34a39552a4d983413b01e185a49aa.tar.gz
tuxman-97c78292fef34a39552a4d983413b01e185a49aa.tar.bz2
tuxman-97c78292fef34a39552a4d983413b01e185a49aa.zip
export and load maps
Diffstat (limited to 'client/css')
-rw-r--r--client/css/editor.css30
1 files changed, 29 insertions, 1 deletions
diff --git a/client/css/editor.css b/client/css/editor.css
index cc3bb88..51c7571 100644
--- a/client/css/editor.css
+++ b/client/css/editor.css
@@ -7,15 +7,43 @@ canvas {
position: absolute;
display: flex;
flex-direction: column;
- border: 1px solid;
+ border: 1px solid #fff;
padding: 1rem;
}
#mapgen {
display: flex;
flex-direction: column;
+ position: absolute;
}
#export {
margin-top: 1rem;
}
+
+#popup {
+ background-color: #191919;
+ position: absolute;
+ flex-direction: column;
+ padding: .5rem;
+ border: 1px solid #fff;
+}
+
+#popup textarea {
+ margin: .5rem 0;
+ height: 5rem;
+ background-color: transparent;
+ color: white;
+ border: 1px solid #fff;
+}
+
+#popup input {
+ margin: 0;
+}
+
+#close {
+ width: .3rem;
+ height: .3rem;
+ font-size: .6rem;
+ line-height: 0;
+}