blob: 76857b9fba89ad262deb21dd4e0930302b3ba45e [file] [log] [blame]
pineafan15b813d2022-02-13 10:06:09 +00001.square {
2 height: 15px !important;
3 width: 15px !important;
4 position: relative;
5 border-radius: 5px;
pineafanff3d4522022-05-06 19:51:02 +01006 border: solid 3px #000;
pineafan15b813d2022-02-13 10:06:09 +00007}
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}