pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 1 | .square { |
2 | height: 15px !important; | ||||
3 | width: 15px !important; | ||||
4 | position: relative; | ||||
5 | border-radius: 5px; | ||||
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame^] | 6 | border: solid 3px #000; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 7 | } |
8 | |||||
9 | .list { | ||||
10 | display: flex; | ||||
11 | flex-direction: column; | ||||
12 | justify-content: center; | ||||
13 | align-items: center; | ||||
14 | width: fit-content; | ||||
15 | gap: 5px; | ||||
16 | } | ||||
17 | |||||
18 | .listItem { | ||||
19 | display: flex; | ||||
20 | flex-direction: row; | ||||
21 | justify-content: left; | ||||
22 | align-items: center; | ||||
23 | gap: 5px; | ||||
24 | width: 100%; | ||||
25 | } | ||||
26 | |||||
27 | .text { | ||||
28 | margin: 0; | ||||
29 | } | ||||
30 | |||||
31 | .code { | ||||
32 | font-family: monospace; | ||||
33 | font-weight: bold; | ||||
34 | background-color: var(--theme-ui-colors-hint); | ||||
35 | transition: background-color 0.3s ease-in-out; | ||||
36 | padding: 2px; | ||||
37 | font-size: 105%; | ||||
38 | border-radius: 5px; | ||||
39 | padding-left: 5px; | ||||
40 | width: fit-content; | ||||
41 | display: inline; | ||||
42 | } |