rDrama/files/assets/css/classic.css

191 lines
3.2 KiB
CSS
Raw Normal View History

2022-07-16 21:00:02 +00:00
/*common*/
:root {
2022-09-16 01:45:31 +00:00
--muted: #666;
--black: #444;
2023-01-25 15:25:37 +00:00
--primary: #b40457 !important;
2022-09-16 01:45:31 +00:00
--grey: #888;
--upvote: #ff8b60;
--downvote: #9393ff;
--sticky: #228822;
2022-12-07 17:53:29 +00:00
--background: 255, 255, 255;
2022-07-16 21:00:02 +00:00
}
2022-11-10 17:48:04 +00:00
.container {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background)) !important;
2022-07-16 21:00:02 +00:00
}
2022-11-10 17:48:04 +00:00
#frontpage .container, #thread .container {
background-image: url(/i/classic2.webp);
}
* {
2022-09-16 01:45:31 +00:00
border-color: var(--muted) !important;
2022-07-16 21:00:02 +00:00
}
#frontpage .container, #thread .container {
2022-09-16 01:45:31 +00:00
max-width: 2160px;
2022-07-16 21:00:02 +00:00
}
.sidebar {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background));
2022-09-16 01:45:31 +00:00
border-radius: 0px;
margin-top: 0;
margin-right: 0;
2022-07-16 21:00:02 +00:00
}
.no-gutters {
2022-09-16 01:45:31 +00:00
margin-top: 1rem;
2022-07-16 21:00:02 +00:00
}
2022-09-16 01:45:31 +00:00
#mobile-bottom-navigation-bar, .navbar {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background)) !important;
2022-07-16 21:00:02 +00:00
}
.btn-primary {
2022-09-16 01:45:31 +00:00
background-color: var(--primary) !important;
color:white;
2022-07-16 21:00:02 +00:00
}
.dropdown-menu {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background));
2022-07-16 21:00:02 +00:00
}
.dropdown-item i {
2022-09-16 01:45:31 +00:00
color: var(--muted) !important;
2022-07-16 21:00:02 +00:00
}
input, textarea, .form-control {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background)) !important;
2022-09-16 01:45:31 +00:00
border: 1px solid;
2022-07-16 21:00:02 +00:00
}
2022-11-04 21:39:15 +00:00
.custom-switch .custom-control-label::after {
background-color: #fff !important;
}
.custom-switch .custom-control-label::before {
background-color: var(--muted);
}
/*decoration*/
.score-up, .active.arrow-up::before, .arrow-up::after, .arrow-up:hover::before {
2022-07-16 21:00:02 +00:00
color: var(--upvote) !important;
}
.score-down, .active.arrow-down::before, .arrow-down::after, .arrow-down:hover::before {
2022-07-16 21:00:02 +00:00
color: var(--downvote) !important;
}
.arrow-up::before, .arrow-down::before, .score {
color: var(--muted);
2022-07-16 21:00:02 +00:00
}
.fa-thumbtack.text-admin {
color: var(--sticky);
2022-07-16 21:00:02 +00:00
}
.fa-broom {
color: var(--sticky) !important;
}
2022-09-14 04:28:17 +00:00
.tooltip {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background));
2022-09-14 04:28:17 +00:00
}
2022-09-16 18:11:33 +00:00
a {
color: #369;
}
2022-09-21 18:30:49 +00:00
.spoiler, spoiler {
2023-02-02 04:03:26 +00:00
background-color: var(--grey) !important;
color: var(--grey) !important;
2022-09-21 18:30:49 +00:00
}
.spoiler:hover, spoiler:hover {
2023-02-02 04:03:26 +00:00
color:white !important;
2022-09-21 18:30:49 +00:00
}
/*front page*/
2022-07-16 21:00:02 +00:00
.sorting {
2022-09-16 01:45:31 +00:00
float:left !important;
padding-top: 5px !important;
2022-07-16 21:00:02 +00:00
}
#frontpage #main-content-col .row:first-child {
2022-09-16 01:45:31 +00:00
background-image: url(/i/classic1.webp);
background-position:center;
background-repeat: repeat;
2022-09-16 01:45:31 +00:00
margin-top: -12px;
margin-bottom:-15px;
2022-07-16 21:00:02 +00:00
}
.sorting .btn {
2022-09-16 01:45:31 +00:00
color: white;
text-shadow: -1px -1px 0 black,1px -1px 0 black,-1px 1px 0 black,1px 1px 0 black;
border:none;
2023-01-25 15:25:37 +00:00
background-color: transparent !important;
2022-07-16 21:00:02 +00:00
}
#frontpage .sorting .text-primary {
2022-09-16 01:45:31 +00:00
color: yellow !important;
text-decoration: underline;
background-color:transparent !important;
2022-07-16 21:00:02 +00:00
}
#frontpage #dropdownMenuButton, #frontpage #dropdownMenuButton2, .sorting .dropdown i {
2022-09-16 01:45:31 +00:00
color: yellow;
2022-07-16 21:00:02 +00:00
}
.card {
2022-09-16 01:45:31 +00:00
border-color: var(--grey) !important;
2022-07-16 21:00:02 +00:00
}
.modal-content {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background));
2022-07-16 21:00:02 +00:00
}
#frontpage .post-title a:not(:visited) {
2022-09-16 01:45:31 +00:00
color: #369;
2022-07-16 21:00:02 +00:00
}
#frontpage .card.stickied .post-title a {
2022-09-16 01:45:31 +00:00
color: var(--sticky);
2022-07-16 21:00:02 +00:00
}
/*posts*/
@media (min-width: 992px){
2022-09-16 01:45:31 +00:00
#thread #main-content-col {
padding-left:3rem;
padding-right: 3rem;
}
2022-07-16 21:00:02 +00:00
}
.comment-section, .comment {
2022-12-07 17:53:29 +00:00
background-color: rgb(var(--background));
2022-07-16 21:00:02 +00:00
}
blockquote {
2022-09-16 01:45:31 +00:00
background-color: var(--grey);
color: white;
}
2022-11-04 21:19:54 +00:00
blockquote a {
2023-01-01 11:36:20 +00:00
color: skyblue;
2022-11-04 21:19:54 +00:00
}
2022-09-16 18:11:33 +00:00
.unread {
background-color: #9994 !important;
}
/*userpage*/
.jumbotron {
2022-09-16 01:45:31 +00:00
color: var(--grey);
}
/*casino*/
#casino-game-wrapper .row-cols-1, #casino-game-wrapper .row-cols-2 {
2022-09-16 01:45:31 +00:00
background-image: none !important;
}