grammatikfejl/assets/style.css

38 lines
479 B
CSS
Raw Normal View History

2024-03-20 16:10:27 +00:00
:root {
color-scheme: light dark;
}
body {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
table {
border-spacing: 0;
text-align: center;
margin: 20px;
}
.preposition {
background-image: url("preposition.svg");
background-size: 10px;
background-repeat: repeat-x;
background-position: center;
}
.added {
background-color: #C8E6C9;
}
@media (prefers-color-scheme: dark) {
.preposition {
filter: invert(1);
}
.added {
background-color: #1B5E20;
}
}