26 lines
561 B
CSS
26 lines
561 B
CSS
:root {
|
|
--primary: #7DF9FF;
|
|
--splash: #7e1946;
|
|
}
|
|
@font-face {
|
|
font-family: 'truelies';
|
|
src: url('true_lies-webfont.woff2') format('woff2'),
|
|
url('true_lies-webfont.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
body {
|
|
color: white !important;
|
|
}
|
|
.dark h1 a, .dark h2 a, .dark h3 a, .dark h4 a, .dark h5 a {
|
|
color: white;
|
|
}
|
|
a {
|
|
color: var(--primary);
|
|
border-bottom: 1px solid var(--primary);
|
|
}
|
|
a:hover {
|
|
background-color: var(--splash) !important;
|
|
border-bottom: 1px dashed var(--primary);
|
|
}
|