1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
| * {
| box-sizing: border-box;
| font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
| color: #161230;
| }
|
| body {
| font-size: 18px;
| background-color: #fafafa;
| }
|
| main {
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| gap: 1rem;
| }
|
| form {
| }
|
| label {
| display: flex;
| gap: 0.5rem;
| flex-wrap: wrap;
| align-items: center;
| justify-content: space-between;
| }
|
| input,
| select,
| button {
| /* flex-grow: 1; */
| font-size: 1rem;
| padding: 0.25rem;
| border: 1px solid;
| border-radius: 4px;
| }
|
| input[type="checkbox"] {
| width: 1.5rem;
| height: 1.5rem;
| }
|
| button {
| cursor: pointer;
| align-self: center;
| padding: 0.5rem 1.5rem;
| background-color: #161230;
| color: #fafafa;
| font-size: 1.5rem;
| }
|
| summary {
| cursor: pointer;
| }
|
| code,
| code > input,
| code > select {
| font-family: 'Courier New', Courier, monospace;
| font-size: 1.5rem;
| }
|
| code {
| display: flex;
| align-items: center;
| }
|
| code input,
| code select {
| border-color: #a9b7c9;
| }
|
| code button {
| margin-left: 2rem;
| }
|
| details {
| width: 100%;
| }
|
| summary {
| margin-bottom: 0.5rem;
| }
|
| details code {
| display: inline-block;
| font-size: 1.1rem;
| margin-left: 0.2rem;
| font-weight: 600;
| }
|
| .code-container {
| width: 80vw;
| max-width: 800px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| gap: 1rem;
| border: 1px solid;
| border-radius: 4px;
| background-color: #eaf3ff;
| padding: 1rem;
| flex-wrap: wrap;
| }
|
|