36 lines
721 B
CSS
36 lines
721 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);
|
|
}
|
|
.full-width {
|
|
left: 50%;
|
|
margin-left: -50vw;
|
|
margin-right: -50vw;
|
|
max-width: 100vw;
|
|
position: relative;
|
|
right: 50%;
|
|
width: 100vw;
|
|
opacity: 0.5;
|
|
}
|