blob: 82adfded4cc1811a8918026dc9e6063443dc93e7 (
plain) (
blame)
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
|
body {
width: 230px;
min-height: auto;
}
html,
body {
margin: 0;
}
.hide {
display: none !important;
}
.button {
display: flex;
margin: 0 auto;
justify-content: space-between;
width: 100%;
}
.space {
height: 10px;
}
input {
height: 23px;
width: 46px;
}
div.block label {
margin: 0;
font-size: 18px;
font-weight: bold;
max-width: 160px;
}
div.block label:hover {
cursor: pointer;
}
|