38 lines
479 B
CSS
38 lines
479 B
CSS
|
: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;
|
||
|
}
|
||
|
}
|
||
|
|