pineafan | ad18352 | 2021-10-24 09:24:59 +0100 | [diff] [blame] | 1 | @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); |
pineafan | 4f9cf4d | 2021-10-24 09:02:30 +0100 | [diff] [blame] | 2 | |
3 | |||||
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 4 | html, body { |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 5 | padding: 0; |
6 | margin: 0; | ||||
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 7 | |
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 8 | overflow-x: hidden; |
9 | } | ||||
10 | |||||
11 | html { | ||||
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 12 | /* background-color: var(--theme-ui-colors-background); */ |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 13 | transition: background-color 0.3s ease-in-out; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 14 | background-color: #000000 !important; |
15 | transition: 0.3s ease-in-out border-radius; | ||||
16 | border-radius: 0px; | ||||
17 | } | ||||
18 | body { | ||||
pineafan | 69f4c67 | 2022-10-23 08:50:36 +0100 | [diff] [blame^] | 19 | background-color: #000000; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 20 | overflow: hidden; |
21 | overflow-y: auto; | ||||
22 | transition: 0.3s ease-in-out border-radius; | ||||
23 | padding-bottom: 0; | ||||
24 | border-radius: 25px; | ||||
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 25 | } |
26 | |||||
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 27 | body { |
28 | height: 100%; | ||||
29 | overflow: hidden; | ||||
30 | } | ||||
31 | html { | ||||
32 | position: absolute; | ||||
33 | top: 42px; | ||||
34 | height: calc(100vh -42px + 1px); | ||||
35 | overflow-y: auto; | ||||
36 | scrollbar-width: none; | ||||
37 | } | ||||
38 | html::-webkit-scrollbar { | ||||
39 | display: none; | ||||
40 | } | ||||
pineafan | df39fd4 | 2021-09-04 16:05:27 +0100 | [diff] [blame] | 41 | |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 42 | a { |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 43 | text-decoration: none; |
pineafan | d494b85 | 2021-09-03 19:49:49 +0100 | [diff] [blame] | 44 | transition: 0.5s ease-in-out; |
pineafan | 7872745 | 2021-11-04 21:25:07 +0000 | [diff] [blame] | 45 | color: var(--theme-ui-colors-primary); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 46 | transition: color 0.3s ease-in-out; |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 47 | } |
48 | |||||
49 | * { | ||||
50 | box-sizing: border-box; | ||||
pineafan | ad18352 | 2021-10-24 09:24:59 +0100 | [diff] [blame] | 51 | font-family: 'Roboto', sans-serif; |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 52 | scroll-behavior: smooth; |
Samuel Shuert | 016ea02 | 2021-09-01 16:17:24 -0500 | [diff] [blame] | 53 | } |
pineafan | d494b85 | 2021-09-03 19:49:49 +0100 | [diff] [blame] | 54 | |
55 | code { | ||||
56 | font-family: monospace; | ||||
57 | font-weight: bold; | ||||
58 | color: #F27878; | ||||
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame] | 59 | background-color: var(--theme-ui-colors-hint); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 60 | transition: background-color 0.3s ease-in-out; |
pineafan | d494b85 | 2021-09-03 19:49:49 +0100 | [diff] [blame] | 61 | padding: 2px; |
62 | font-size: 105%; | ||||
63 | border-radius: 5px; | ||||
64 | padding-left: 5px; | ||||
65 | } |