43107965a9
By making small thumbnails and aligning everything horizontally the space on the screen is used better.
34 lines
No EOL
778 B
CSS
34 lines
No EOL
778 B
CSS
/* Dark Mode Styles */
|
|
body {
|
|
background-color: #333 !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.dark-card {
|
|
background-color: #333 !important;
|
|
color: white !important;
|
|
}
|
|
.jumbotron {
|
|
background-color: #222; /* or any other dark color */
|
|
color: #fff !important; /* or any other light color */
|
|
}
|
|
|
|
.list-group {
|
|
background-color: #222 !important;
|
|
color: fff !important;
|
|
}
|
|
.list-group-item {
|
|
background-color: #222 !important;
|
|
color: fff !important;
|
|
}
|
|
#support-section {
|
|
background-color: #444 !important;
|
|
}
|
|
|
|
|
|
#pages-container {
|
|
--background-color: rgba(255, 255, 255, 0.046) !important;
|
|
--scroll-bar-color: #4c4c4c !important;
|
|
--scroll-bar-thumb: #d3d3d3 !important;
|
|
--scroll-bar-thumb-hover: #ffffff !important;
|
|
} |