blob: 98d38b0ec65b787d386d628ee217111772ff1469 [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;
15 transition: 0.3s ease-in-out border-radius;
16 border-radius: 0px;
17}
18body {
pineafan69f4c672022-10-23 08:50:36 +010019 background-color: #000000;
pineafanff3d4522022-05-06 19:51:02 +010020 overflow: hidden;
21 overflow-y: auto;
22 transition: 0.3s ease-in-out border-radius;
23 padding-bottom: 0;
24 border-radius: 25px;
Samuel Shuert016ea022021-09-01 16:17:24 -050025}
26
pineafanff3d4522022-05-06 19:51:02 +010027body {
28 height: 100%;
29 overflow: hidden;
30}
31html {
32 position: absolute;
33 top: 42px;
34 height: calc(100vh -42px + 1px);
35 overflow-y: auto;
36 scrollbar-width: none;
37}
38html::-webkit-scrollbar {
39 display: none;
40}
pineafandf39fd42021-09-04 16:05:27 +010041
Samuel Shuert016ea022021-09-01 16:17:24 -050042a {
Samuel Shuert016ea022021-09-01 16:17:24 -050043 text-decoration: none;
pineafand494b852021-09-03 19:49:49 +010044 transition: 0.5s ease-in-out;
pineafan78727452021-11-04 21:25:07 +000045 color: var(--theme-ui-colors-primary);
pineafanaa9c4fd2022-06-10 19:58:10 +010046 transition: color 0.3s ease-in-out;
Samuel Shuert016ea022021-09-01 16:17:24 -050047}
48
49* {
50 box-sizing: border-box;
pineafanad183522021-10-24 09:24:59 +010051 font-family: 'Roboto', sans-serif;
Samuel Shuert604e31d2021-09-02 16:06:20 -050052 scroll-behavior: smooth;
Samuel Shuert016ea022021-09-01 16:17:24 -050053}
pineafand494b852021-09-03 19:49:49 +010054
55code {
56 font-family: monospace;
57 font-weight: bold;
58 color: #F27878;
pineafan69adcb82021-11-03 21:29:03 +000059 background-color: var(--theme-ui-colors-hint);
pineafanaa9c4fd2022-06-10 19:58:10 +010060 transition: background-color 0.3s ease-in-out;
pineafand494b852021-09-03 19:49:49 +010061 padding: 2px;
62 font-size: 105%;
63 border-radius: 5px;
64 padding-left: 5px;
65}