-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
77 lines (63 loc) · 956 Bytes
/
layout.css
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
* {
font-size: medium;
user-select: none;
}
body {
margin: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
.flex-row {
display: flex;
justify-content: center;
align-items: stretch;
gap: 1rem;
}
table {
border-collapse: collapse;
}
th {
height: 2rem;
font-size: x-large;
}
td {
padding: 0.25rem 0.5rem;
}
.control-box {
width: 30rem;
text-align: center;
vertical-align: middle;
}
.control-box td {
padding: 0.5rem 0;
}
select, button {
padding: 0.25rem 1rem;
cursor: pointer;
}
.col-box {
width: 20rem;
}
.col-box td:nth-child(2) {
text-align: right;
}
.list-box {
width: 25rem;
}
.list-box td {
text-align: center;
padding: 1rem;
}
ul {
margin: 0;
display: inline-block;
text-align: left;
padding-left: 1.25rem;
}
ul > p {
margin-top: 0;
margin-bottom: 0.25rem;
position: relative;
left: -1.25rem;
}