blogotheme/assets/css/override.css

81 lines
1.1 KiB
CSS
Raw Permalink Normal View History

2021-01-03 14:33:26 +01:00
/*
* To override CSS, you should create
* project_root/assets/css/override.css
* and place all your CSS inside it.
* You should not modify this file.
2021-01-03 22:32:46 +01:00
*/
/* Enable smooth scrolling for footnotes. */
html {
scroll-behavior: smooth;
}
ol > li > ::first-line {
line-height: 3.1em;
}
/*
* Dark theme
*/
2021-01-03 22:32:46 +01:00
@media (prefers-color-scheme: dark) {
body {
color: #eee;
background: #121212;
}
body a {
color: #809fff;
}
.content {
background: #121212;
2022-02-27 17:39:52 +01:00
border: solid;
2022-07-18 02:33:57 +02:00
border-width: 3px;
2022-02-27 17:39:52 +01:00
border-color: white;
2021-01-03 22:32:46 +01:00
}
.card-container {
background: #121212;
}
.menu-container {
color: white;
background: #121212;
}
.nav-header {
background: #121212;
color: white;
}
.nav-text{
background: #121212;
color: white;
}
.blog-card {
background: #121212;
color: white;
2022-02-27 17:39:52 +01:00
border: solid;
border-color: white;
2022-07-18 02:33:57 +02:00
border-width: 3px;
2022-02-27 17:39:52 +01:00
2021-01-03 22:32:46 +01:00
}
.blog-card h2{
background: #121212;
color: white;
}
2021-04-04 13:12:10 +02:00
footer h3 {
color: white;
}
.webring {
background-color: #121212;
}
2021-01-03 22:32:46 +01:00
}