hardenedbsd-web/src/assets/css/base.css

47 lines
659 B
CSS
Raw Normal View History

2025-03-08 18:03:20 +01:00
* {
2025-03-08 16:47:10 +01:00
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: var(--white);
2025-03-08 18:03:20 +01:00
font-family: var(--mainfont), sans-serif;
2025-03-08 16:47:10 +01:00
}
2025-03-08 18:11:11 +01:00
/* Typography */
2025-03-08 18:03:20 +01:00
a {
2025-03-08 16:47:10 +01:00
text-decoration: none;
}
2025-03-08 18:11:11 +01:00
h1 {
font-size: 4em;
}
h2 {
font-size: 3.5em;
}
h3 {
font-size: 3em;
}
h4 {
font-size: 2.5em;
}
h5 {
font-size: 2em;
}
h6 {
font-size: 1.5em;
2025-03-08 16:47:10 +01:00
}
@media (prefers-color-scheme: dark) {
a, a:link, a:visited { color: var(--lightblue); }
body, html { background-color: var(--darkgray); color: #bebebe; }
pre { background-color: #111111; color: #aaaaaa; }
.clean { background-color: #111111; color: #aaaaaa; }
}