summaryrefslogtreecommitdiff
path: root/static/css/base.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/base.css')
-rw-r--r--static/css/base.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/static/css/base.css b/static/css/base.css
new file mode 100644
index 0000000..659d3f0
--- /dev/null
+++ b/static/css/base.css
@@ -0,0 +1,39 @@
+:root {
+ --bg-default: #2e2e2e;
+}
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+html {
+ font-size: 16px;
+}
+
+body {
+ background-color: var(--bg-default);
+ font-family: 'Segoe UI', 'Roboto', sans-serif;
+ color: #e8e6e3;
+}
+
+.container {
+ max-width: 1200px;
+ width: 100%;
+ margin: 0 auto; /* center the container horizontally */
+ padding: 0 30px; /* add small padding on left & right for content */
+}
+
+a:link {
+ color: #64B5F6;
+}
+a:visited {
+ color: #9575CD;
+}
+a:hover {
+ color: #90CAF9;
+}
+a:active {
+ color: #FF8A80;
+}