Browse Source

Start adding CSS

Getty Ritter 3 years ago
parent
commit
0ea368359f
1 changed files with 34 additions and 0 deletions
  1. 34 0
      static/by.css

+ 34 - 0
static/by.css

@@ -0,0 +1,34 @@
+html,body {
+    height: 100%;
+    margin: 0px;
+    padding: 0px;
+}
+
+body {
+    font-family: "Arial", "Helvetica", sans-serif;
+}
+
+.sidebar {
+    height: 100%;
+    width: 7em;
+    color: #fff;
+    background-color: #c00;
+    text-align: center;
+}
+
+.page {
+    margin: 2em;
+    width: 40em;
+    padding: 1em;
+    border: solid black 1px;
+}
+
+.board {
+    height: 100%;
+    display: flex;
+    flex-direction: row;
+}
+
+#root {
+    height: 100%;
+}