You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
670 B
45 lines
670 B
:root {
|
|
--primary-color: #272736;
|
|
--text-color: #ffffeb;
|
|
|
|
/* Overriding DP DS */
|
|
--body-background: var(--primary-color);
|
|
--body-color: var(--text-color);
|
|
|
|
--nav-color: var(--primary-color);
|
|
--nav-background: var(--text-color);
|
|
|
|
--a-color: var(--text-color);
|
|
}
|
|
|
|
nav {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
.question {
|
|
font-style: italic;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.0em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.25em;
|
|
margin: auto 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--primary-color: #ffffeb;
|
|
--text-color: #272736;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 420px) {
|
|
#app {
|
|
margin-left: 0vw;
|
|
margin-right: 0vw;
|
|
}
|
|
}
|
|
|