capitals_quiz/styles.css

32 lines
642 B
CSS
Raw Normal View History

2022-04-13 16:08:03 +00:00
@import url("https://styles.alv.cx/modules/colors/base16-default.css");
2022-04-03 20:38:57 +00:00
@import url("https://styles.alv.cx/base.css");
2022-04-13 01:55:01 +00:00
@import url("https://styles.alv.cx/modules/darkmode.css");
@import url("https://styles.alv.cx/modules/colors/gruvbox.css");
2021-12-01 15:11:20 +00:00
2021-04-10 14:02:36 +00:00
:root {
2022-01-19 20:37:49 +00:00
--red: #ab4642;
--orange: #dc9656;
--yellow: #f7ca88;
--green: #a1b56c;
--teal: #86c1b9;
--blue: #7cafc2;
--purple: #ba8baf;
--brown: #a16946;
2021-04-10 14:02:36 +00:00
}
body {
2022-01-19 20:37:49 +00:00
font-family: monospace;
font-size: 16px;
margin: 0 auto;
max-width: 800px;
padding: 2em;
line-height: 1.1;
2021-04-10 14:02:36 +00:00
}
@media only screen and (max-width: 600px) {
2022-01-19 20:37:49 +00:00
body {
margin: 0em auto;
padding: 2em;
}
2021-04-10 14:02:36 +00:00
}