aboutsummaryrefslogtreecommitdiffstats
path: root/app/static/css/globalstyles.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/static/css/globalstyles.css')
-rw-r--r--app/static/css/globalstyles.css76
1 files changed, 76 insertions, 0 deletions
diff --git a/app/static/css/globalstyles.css b/app/static/css/globalstyles.css
new file mode 100644
index 0000000..3d030ab
--- /dev/null
+++ b/app/static/css/globalstyles.css
@@ -0,0 +1,76 @@
+@import url('https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&display=swap');
+
+html, body {
+ border: 0;
+ margin: 0;
+ background-color: #000;
+ color: #eee;
+ font-family: 'Cousine', monospace, sans-serif;
+ line-height: 1.3;
+}
+
+#navbar {
+ background-color: #222;
+ width: 100%;
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+ align-items: stretch;
+ gap: 10px;
+}
+
+.navbar-element {
+ background-color: #222;
+ display: flex;
+ height: 30px;
+ text-align: center;
+ line-height: 30px;
+ padding: 5px;
+}
+
+.navbar-element:hover {
+ background-color: #888;
+ transition: 0.2s;
+ cursor: pointer;
+}
+
+.navbar-element > a {
+ color: #fff;
+ text-decoration: none;
+}
+
+.navbar-element > .highlight {
+ color: #ffff87;
+}
+
+#main-container {
+ max-width: 1100px;
+ margin: 0 auto;
+}
+
+#content {
+ max-width: calc(1100px - 10px);
+ margin: 0 auto;
+}
+
+a {
+ color: #ffff87;
+ text-decoration: underline;
+}
+
+.highlight {
+ color: #ffff87;
+}
+
+.footer {
+ font-size: 10px;
+}
+
+.redlink {
+ color: #ff4136;
+}
+
+.box {
+ border: solid 1px #fff;
+ padding: 10px;
+} \ No newline at end of file