blob: f0b957d6bd84b69a07f4b01fa45a990a5b464790 [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 {
pineafanff3d4522022-05-06 19:51:02 +010012 /* background-color: var(--theme-ui-colors-background); */
pineafanaa9c4fd2022-06-10 19:58:10 +010013 transition: background-color 0.3s ease-in-out;
pineafanff3d4522022-05-06 19:51:02 +010014 background-color: #000000 !important;
pineafanff3d4522022-05-06 19:51:02 +010015 border-radius: 0px;
16}
17body {
pineafan69f4c672022-10-23 08:50:36 +010018 background-color: #000000;
pineafanff3d4522022-05-06 19:51:02 +010019 overflow: hidden;
20 overflow-y: auto;
pineafanff3d4522022-05-06 19:51:02 +010021 padding-bottom: 0;
pineafan74f16742022-11-07 21:57:55 +000022 border-radius: 25px 25px 0 0;
Samuel Shuert016ea022021-09-01 16:17:24 -050023}
24
pineafanff3d4522022-05-06 19:51:02 +010025body {
26 height: 100%;
27 overflow: hidden;
28}
29html {
30 position: absolute;
31 top: 42px;
32 height: calc(100vh -42px + 1px);
33 overflow-y: auto;
34 scrollbar-width: none;
35}
36html::-webkit-scrollbar {
37 display: none;
38}
pineafandf39fd42021-09-04 16:05:27 +010039
Samuel Shuert016ea022021-09-01 16:17:24 -050040a {
Samuel Shuert016ea022021-09-01 16:17:24 -050041 text-decoration: none;
pineafand494b852021-09-03 19:49:49 +010042 transition: 0.5s ease-in-out;
pineafan78727452021-11-04 21:25:07 +000043 color: var(--theme-ui-colors-primary);
pineafanaa9c4fd2022-06-10 19:58:10 +010044 transition: color 0.3s ease-in-out;
Samuel Shuert016ea022021-09-01 16:17:24 -050045}
46
47* {
48 box-sizing: border-box;
pineafanad183522021-10-24 09:24:59 +010049 font-family: 'Roboto', sans-serif;
Samuel Shuert604e31d2021-09-02 16:06:20 -050050 scroll-behavior: smooth;
Samuel Shuert016ea022021-09-01 16:17:24 -050051}
pineafand494b852021-09-03 19:49:49 +010052
53code {
54 font-family: monospace;
55 font-weight: bold;
56 color: #F27878;
pineafan69adcb82021-11-03 21:29:03 +000057 background-color: var(--theme-ui-colors-hint);
pineafanaa9c4fd2022-06-10 19:58:10 +010058 transition: background-color 0.3s ease-in-out;
pineafand494b852021-09-03 19:49:49 +010059 padding: 2px;
60 font-size: 105%;
61 border-radius: 5px;
62 padding-left: 5px;
63}