summaryrefslogtreecommitdiff
path: root/app/static
diff options
context:
space:
mode:
Diffstat (limited to 'app/static')
-rw-r--r--app/static/css/main.css64
1 files changed, 0 insertions, 64 deletions
diff --git a/app/static/css/main.css b/app/static/css/main.css
deleted file mode 100644
index 8fd53f8..0000000
--- a/app/static/css/main.css
+++ /dev/null
@@ -1,64 +0,0 @@
-* {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;
- }
-}