aboutsummaryrefslogtreecommitdiff
path: root/styles/globals.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/globals.css')
-rw-r--r--styles/globals.css39
1 files changed, 39 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css
index d633303..6c5bf7f 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -1,5 +1,44 @@
html, body {
padding: 0;
margin: 0;
+
+ background-color: var(--bg);
+ color: var(--fg);
+}
+
+::selection {
+ background-color: var(--fire-opal);
+}
+
+h1, h2, h3 {
+ font-weight: 700;
+ margin: 0;
+}
+
+h1 { font-size: 64px; }
+h2 { font-size: 48px; }
+h3 { font-size: 32px; }
+
+.subtile {
+ font-style: italic;
+ opacity: .75;
+ color: var(--heliotrope-gray);
+}
+
+.contentWrapper a {
+ color: var(--fire-opal);
+ text-decoration: none;
+ position: relative;
+ display: inline-block;
+}
+
+.contentWrapper a::after {
+ content: '';
+ position: absolute;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ height: 1px;
+ background-color: var(--fire-opal);
}