blob: 175239c9298aaef3057166aae0deeea7f6ed0996 [file] [log] [blame]
pineafanad183522021-10-24 09:24:59 +01001@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
pineafan4f9cf4d2021-10-24 09:02:30 +01002
3
pineafana5ce9102021-09-02 17:21:31 +01004html, body {
Samuel Shuert016ea022021-09-01 16:17:24 -05005 padding: 0;
6 margin: 0;
pineafana5ce9102021-09-02 17:21:31 +01007
pineafandf39fd42021-09-04 16:05:27 +01008 overflow-x: hidden;
9}
10
11html {
pineafan69adcb82021-11-03 21:29:03 +000012 background-color: var(--theme-ui-colors-background);
Samuel Shuert016ea022021-09-01 16:17:24 -050013}
14
pineafandf39fd42021-09-04 16:05:27 +010015
Samuel Shuert016ea022021-09-01 16:17:24 -050016a {
Samuel Shuert016ea022021-09-01 16:17:24 -050017 text-decoration: none;
pineafand494b852021-09-03 19:49:49 +010018 transition: 0.5s ease-in-out;
pineafan69adcb82021-11-03 21:29:03 +000019 color: var(--theme-ui-colors-primary)
Samuel Shuert016ea022021-09-01 16:17:24 -050020}
21
22* {
23 box-sizing: border-box;
pineafanad183522021-10-24 09:24:59 +010024 font-family: 'Roboto', sans-serif;
Samuel Shuert604e31d2021-09-02 16:06:20 -050025 scroll-behavior: smooth;
Samuel Shuert016ea022021-09-01 16:17:24 -050026}
pineafand494b852021-09-03 19:49:49 +010027
28code {
29 font-family: monospace;
30 font-weight: bold;
31 color: #F27878;
pineafan69adcb82021-11-03 21:29:03 +000032 background-color: var(--theme-ui-colors-hint);
pineafand494b852021-09-03 19:49:49 +010033 padding: 2px;
34 font-size: 105%;
35 border-radius: 5px;
36 padding-left: 5px;
37}