mirror of
https://github.com/jlengrand/refined.blog.git
synced 2026-03-10 08:41:23 +00:00
20 lines
448 B
CSS
20 lines
448 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
|
|
body {
|
|
margin: 0 auto;
|
|
max-width: 100ch;
|
|
padding: 10px;
|
|
font-family: 'Libre Baskerville', serif;
|
|
background-color: #FDF6E3;
|
|
}
|
|
|
|
.link{
|
|
color: #3b3b3d;
|
|
text-decoration: none; /* no underline */
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body{
|
|
background:#191919;
|
|
filter:invert(1);
|
|
}
|
|
} |