aboutsummaryrefslogtreecommitdiff
path: root/docs/style.css
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-07-30 15:45:23 +0100
committerNerdyPepper <[email protected]>2019-07-30 15:45:23 +0100
commit376fddb25407937cec5fb4208a9c19b9cdf6b8c7 (patch)
tree5f5597e45c53c830d239eba532589462cddae3b5 /docs/style.css
parent487b33f0748fdf0c1b4a8300c6d40e46ecfb5fa4 (diff)
fonts load fine now!
Diffstat (limited to 'docs/style.css')
-rw-r--r--docs/style.css15
1 files changed, 10 insertions, 5 deletions
diff --git a/docs/style.css b/docs/style.css
index 7610c30..3baf889 100644
--- a/docs/style.css
+++ b/docs/style.css
@@ -1,8 +1,14 @@
1@import url('https://rsms.me/inter/inter.css'); 1@import url('https://rsms.me/inter/inter.css');
2 2
3@font-face {
4 font-family: "Iosevka";
5 src: url('https://cdn.rawgit.com/kaushalmodi/iosevka-mirror/v1.14.1/woff/iosevka-ss08-bolditalic.woff') format('woff');
6 font-style: bold-italic;
7}
8
3:root { 9:root {
4 --cyan: #59d8a6; 10 --cyan: #00ffff;
5 --pink: #e61d91; 11 --pink: #ff00ff;
6 --black: #212121; 12 --black: #212121;
7 --light-black: #535353; 13 --light-black: #535353;
8 --white: #ffffff; 14 --white: #ffffff;
@@ -73,13 +79,12 @@ hr {
73 79
74.heading { 80.heading {
75 margin:0 auto; 81 margin:0 auto;
76 color: var(--white); 82 color: var(--black);
77 text-align: center; 83 text-align: center;
78 font-size: 6rem; 84 font-size: 6rem;
79 font-family: 'Iosevka', monospace; 85 font-family: 'Iosevka', monospace;
80 text-shadow: 0.25rem 0rem var(--cyan), -0.25rem 0rem var(--pink); 86 text-shadow: 0.25rem 0rem var(--cyan), -0.25rem 0rem var(--pink);
81 line-height: 8.5rem; 87 line-height: 8.5rem;
82 font-style: italic;
83} 88}
84 89
85a, a:hover, a:visited, a:active { 90a, a:hover, a:visited, a:active {
@@ -114,7 +119,7 @@ a:hover, a:active {
114pre, code { 119pre, code {
115 background-color: var(--dark-white); 120 background-color: var(--dark-white);
116 color: var(--black); 121 color: var(--black);
117 font-family: 'Iosevka', monospace; 122 font-family: monospace;
118} 123}
119 124
120pre { 125pre {