summaryrefslogtreecommitdiff
path: root/app/static/css/main.css
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2019-11-09 19:55:57 -0600
committerBlaise Thompson <blaise@untzag.com>2019-11-09 19:55:57 -0600
commitc99d2447b57d6e14a78013152a53bb4552a33bb7 (patch)
tree7abce49aa4a35e51ae43dd2cace880b611a5f93b /app/static/css/main.css
parent735f16fe70f6f1d182d42d1f5161fe2aebe6aa6d (diff)
pre-commit
Diffstat (limited to 'app/static/css/main.css')
-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;
- }
-}