css: add style.css
This commit is contained in:
37
css/style.css
Normal file
37
css/style.css
Normal file
@@ -0,0 +1,37 @@
|
||||
:root {
|
||||
--base: #191724;
|
||||
--surface: #1f1d2e;
|
||||
--overlay: #26233a;
|
||||
--muted: #6e6a86;
|
||||
--subtle: #908caa;
|
||||
--text: #e0def4;
|
||||
--love: #eb6f92;
|
||||
--gold: #f6c177;
|
||||
--rose: #ebbcba;
|
||||
--pine: #31748f;
|
||||
--foam: #9ccfd8;
|
||||
--iris: #c4a7e7;
|
||||
--highlightLow: #21202e;
|
||||
--highlightMed: #403d52;
|
||||
--highlightHigh: #524f67;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: var(--base);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 90vh;
|
||||
margin: 1em auto;
|
||||
width: min(40em, 90%);
|
||||
background-color: var(--surface);
|
||||
border: 1px solid var(--highlightMed);
|
||||
padding: 1em;
|
||||
font-family: serif;
|
||||
font-size: 110%;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--iris);
|
||||
}
|
||||
Reference in New Issue
Block a user