blob: fb589365937be5226f1a7b5529009295c7dce336 (
plain)
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
|
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.grid {
display: grid;
grid-template-rows: repeat(14, 40px);
grid-gap: 2px;
}
.row {
display: grid;
grid-template-columns: repeat(14, 40px);
grid-gap: 2px;
}
.cell {
width: 40px;
height: 40px;
background-color: var(--bg0_s);
border: 1px solid var(--fg);
border-radius: 4px;
cursor: pointer;
}
.cell.active {
background-color: var(--fg0);
}
.button {
margin: 10px;
padding: 10px 20px;
background-color: var(--fg);
color: var(--bg);
border: none;
border-radius: 4px;
cursor: pointer;
}
|