summaryrefslogtreecommitdiff
path: root/app/static/css/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/static/css/main.css')
-rw-r--r--app/static/css/main.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/app/static/css/main.css b/app/static/css/main.css
new file mode 100644
index 0000000..8fd53f8
--- /dev/null
+++ b/app/static/css/main.css
@@ -0,0 +1,64 @@
+* {box-sizing: border-box;}
+
+body {
+ margin: 0;
+ font-family: sans-serif;
+ color: #c5c8c6;
+ background-color: #1d1f21;
+}
+
+p {
+ margin: 20px;
+}
+
+h1 {
+ margin: 20px;
+}
+
+.header {
+ overflow: hidden;
+ background-color: #373b41;
+ padding: 20px 10px;
+}
+
+.header a {
+ float: left;
+ color: #c5c8c6;
+ text-align: center;
+ padding: 12px;
+ text-decoration: none;
+ font-size: 18px;
+ line-height: 25px;
+ border-radius: 4px;
+}
+
+.header a.logo {
+ font-size: 25px;
+ font-weight: bold;
+}
+
+.header a:hover {
+ background-color: #c5c8c6;
+ color: #373b41;
+}
+
+.header a.active {
+ background-color: #cc6666;
+ color: #c5c8c6;
+}
+
+.header-right {
+ float: right;
+}
+
+@media screen and (max-width: 500px) {
+ .header a {
+ float: none;
+ display: block;
+ text-align: left;
+ }
+
+ .header-right {
+ float: none;
+ }
+}