-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (62 loc) · 1021 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500');
:root {
--bg-color: #F2F2F2;
--text-color:#1A1A1A;
--block-color:#1b1f230d;
--border-color:#1b1f2317;
}
body
{
background-color: var(--bg-color);
font-family: 'Open Sans', sans-serif;
font: 16px;
line-height: 1.25;
color: var(--text-color);
margin: 0;
}
main
{
max-width: 100%;
width: 1024px;
margin: 32px auto;
padding: 0 16px;
display: table;
}
h1
{
text-align: center;
}
table
{
width: 100%;
border-spacing: 0;
border-collapse: collapse;
}
td, th
{
text-align: left;
padding: 8px;
line-height: 1.5;
}
td
{
border-top: 1px solid var(--border-color);;
}
th
{
border-bottom: 2px solid var(--border-color);;
}
tbody tr:nth-child(odd)
{
background-color: var(--block-color);
}
.left{
padding-left: 8px;
text-align: left;
float: left;
}
.right{
padding-right: 8px;
text-align: right;
float:right
}