blob: 1b39e04aaa208c9f07802ccc8df7800e4fb4c066 [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);
pineafan78727452021-11-04 21:25:07 +000013 transition: background-color 0.3s ease-in-out;
Samuel Shuert016ea022021-09-01 16:17:24 -050014}
15
pineafandf39fd42021-09-04 16:05:27 +010016
Samuel Shuert016ea022021-09-01 16:17:24 -050017a {
Samuel Shuert016ea022021-09-01 16:17:24 -050018 text-decoration: none;
pineafand494b852021-09-03 19:49:49 +010019 transition: 0.5s ease-in-out;
pineafan78727452021-11-04 21:25:07 +000020 color: var(--theme-ui-colors-primary);
21 transition: color 0.3s ease-in-out;
Samuel Shuert016ea022021-09-01 16:17:24 -050022}
23
24* {
25 box-sizing: border-box;
pineafanad183522021-10-24 09:24:59 +010026 font-family: 'Roboto', sans-serif;
Samuel Shuert604e31d2021-09-02 16:06:20 -050027 scroll-behavior: smooth;
Samuel Shuert016ea022021-09-01 16:17:24 -050028}
pineafand494b852021-09-03 19:49:49 +010029
30code {
31 font-family: monospace;
32 font-weight: bold;
33 color: #F27878;
pineafan69adcb82021-11-03 21:29:03 +000034 background-color: var(--theme-ui-colors-hint);
pineafan78727452021-11-04 21:25:07 +000035 transition: background-color 0.3s ease-in-out;
pineafand494b852021-09-03 19:49:49 +010036 padding: 2px;
37 font-size: 105%;
38 border-radius: 5px;
39 padding-left: 5px;
40}