summaryrefslogtreecommitdiff
path: root/client/css
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-06-17 01:18:16 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-06-17 01:18:16 -0400
commit113c6d105a0b06603388e5e0ded90ed169ae0c50 (patch)
tree70af321cdce86a331141e437f6abae3c1cefd74a /client/css
parentts (diff)
downloadtuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.tar.gz
tuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.tar.bz2
tuxman-113c6d105a0b06603388e5e0ded90ed169ae0c50.zip
map editor
Diffstat (limited to 'client/css')
-rw-r--r--client/css/editor.css21
-rw-r--r--client/css/main.css5
2 files changed, 26 insertions, 0 deletions
diff --git a/client/css/editor.css b/client/css/editor.css
new file mode 100644
index 0000000..cc3bb88
--- /dev/null
+++ b/client/css/editor.css
@@ -0,0 +1,21 @@
+canvas {
+ box-shadow: inset 0 0 1px red;
+}
+
+#sidebar {
+ background-color: #191919;
+ position: absolute;
+ display: flex;
+ flex-direction: column;
+ border: 1px solid;
+ padding: 1rem;
+}
+
+#mapgen {
+ display: flex;
+ flex-direction: column;
+}
+
+#export {
+ margin-top: 1rem;
+}
diff --git a/client/css/main.css b/client/css/main.css
index 87c145c..f8309de 100644
--- a/client/css/main.css
+++ b/client/css/main.css
@@ -70,4 +70,9 @@ input {
border: solid 2px #fff;
padding: .25rem;
margin-bottom: .215rem;
+ box-sizing:content-box;
+}
+
+p {
+ padding: .25rem;
}