capitals_quiz/styles.css

36 lines
644 B
CSS
Raw Normal View History

2021-12-01 15:11:20 +00:00
@import url("https://alv.cx/styles.css");
2021-04-10 14:02:36 +00:00
:root {
--default-bg: #fefefe;
2021-04-11 14:04:52 +00:00
--dark-bg: #b8b8b8;
2021-04-10 14:02:36 +00:00
--selected-bg:#383838;
--default-fg: #454545;
--red: #ab4642;
--orange: #dc9656;
--yellow: #f7ca88;
--green: #a1b56c;
--teal: #86c1b9;
--blue: #7cafc2;
--purple: #ba8baf;
--brown: #a16946;
}
body {
font-family: monospace;
color: var(--default-fg);
font-size: 16px;
margin: 2em auto;
max-width: 800px;
padding: 5em;
line-height: 1.1;
text-align: justify;
background-color: var(--default-bg);
}
@media only screen and (max-width: 600px) {
body {
margin: 0em auto;
padding: 2em;
}
}