looks less awful

This commit is contained in:
beese_buck 2022-01-19 01:54:15 -08:00 committed by GitHub
parent 3bd1ee4fc6
commit cb0c71a632
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
:root { :root {
--black: #94a3b8; --black: #94a3b8;
--blue: #0284c7; --primary: #0284c7;
--gold: #f59e0b;
--secondary: #dc3545;
--gray-100: #f1f5f9; --gray-100: #f1f5f9;
--gray-200: #e2e8f0; --gray-200: #e2e8f0;
--gray-300: #cbd5e1; --gray-300: #cbd5e1;
@ -21,7 +23,7 @@ body, .container.transparent, .card {
} }
p { p {
color: var(--gray-300) color: var(--gray-200)
} }
.comment-collapse-desktop { .comment-collapse-desktop {
@ -32,14 +34,88 @@ blockquote {
background-color: var(--gray-700); background-color: var(--gray-700);
} }
#frontpage #main-content-row div { #frontpage #main-content-row, .sidebar {
background-color: var(--gray-800) !important background-color: var(--gray-800) !important
} }
#thread #main-content-row div { #thread .comment-section {
background-color: var(--gray-800) !important background-color: var(--gray-800) !important
} }
.card { .card {
border-color: var(--gray-600) !important border-color: var(--gray-600) !important
} }
.btn {
border-color: var(--gray-500);
color: var(--gray-300)
}
#srd {
background-color: var(--gray-900) !important;
}
#srd a {
color: var(--gray-200) !important
}
.sidebar {
color: var(--gray-200)
}
#mobile-bottom-navigation-bar {
background-color: var(--gray-700) !important;
border-color: var(--gray-600) !important;
}
#mobile-bottom-navigation-bar .text-primary {
color: var(--gray-200) !important
}
#mobile-bottom-navigation-bar .text-muted {
color: var(--gray-400) !important
}
#frontpage div#expandImageModal.modal.desktop-expanded-image-modal {
background-color: transparent !important;
}
.text-small-extra.text-primary {
color: var(--gray-300) !important;
}
.score-up, .active.arrow-up::before, .arrow-up::after, .arrow-up:hover::before {
color: var(--secondary) !important;
}
.score-down, .active.arrow-down::before, .arrow-down::after, .arrow-down:hover::before {
color: var(--secondary) !important;
}
.arrow-up::before, .arrow-down::before, .score {
color: var(--gray-400);
}
#frontpage .post-title a {
color: var(--gray-300)
}
.text-info {
color: var(--gold) !important
}
.comment-collapse-icon::before {
color: var(--gray-500) !important
}
.text-admin {
color: green
}
.fa-microphone-stand {
color: var(--primary) !important
}
.fa-robot {
color: var(--secondary) !important
}