_qualification.css
737 Bytes
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
.qualification-info {
h2,
h4 {
text-align: center;
line-height: 30px;
}
h2 {
font-size: 24px;
font-weight: bold;
margin-top: 100px;
}
h4 {
font-size: 16px;
}
table {
margin: 40px auto 100px;
border: 1px solid #e0e0e0;
width: 600px;
thead {
td {
background: #eee;
font-weight: bold;
}
}
td {
line-height: 40px;
text-align: center;
color: #171717;
}
td:first-child {
border-right: 1px solid #e0e0e0;
}
tr {
border-top: 1px solid #e0e0e0;
}
}
}