浏览代码

Start adding CSS

Getty Ritter 5 年之前
父节点
当前提交
0ea368359f
共有 1 个文件被更改,包括 34 次插入0 次删除
  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%;
+}