46 lines
1021 B
CSS
46 lines
1021 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);
|
|
}
|
|
|
|
#isso-thread > h4 {
|
|
color: white;
|
|
}
|
|
.isso-textarea, .isso-input-wrapper > input {
|
|
color: white !important;
|
|
background-color: transparent !important;
|
|
border-color: white !important;
|
|
border-radius: 0px !important;
|
|
}
|
|
.isso-post.action > input {
|
|
background-color: var(--primary) !important;
|
|
color: black !important;
|
|
border-color: var(--splash) !important;
|
|
border-radius: 0px !important;
|
|
}
|
|
::placeholder {
|
|
color: white;
|
|
opacity: 1;
|
|
}
|