mylloon.fr/static/css/blog/post.css

30 lines
506 B
CSS
Raw Normal View History

2023-04-19 18:55:03 +02:00
@media (prefers-color-scheme: light) {
:root {
--selection: rgba(92, 54, 131, 0.7);
--visited: #005cc5;
}
}
@media (prefers-color-scheme: dark) {
:root {
--selection: rgba(124, 75, 173, 0.5);
--visited: #8be9fd;
}
}
:root {
--font-size: 17px;
}
html {
2023-04-24 18:09:14 +02:00
font-family: "Segoe UI", Arial, sans-serif, "Segoe UI Emoji",
"Segoe UI Symbol";
2023-04-19 18:55:03 +02:00
font-size: var(--font-size);
2023-04-24 18:09:14 +02:00
scroll-behavior: smooth;
2023-04-19 18:55:03 +02:00
}
::selection {
color: rgb(255, 255, 255);
background: var(--selection);
}