-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (60 loc) · 1.06 KB
/
style.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
table {
border-spacing: 1;
border-collapse: collapse;
background: #FFCB9A;
border-radius: 6px;
overflow: hidden;
max-width: 800px;
width: 100%;
margin: 1px auto;
position: relative;
}
table * {
position: relative;
}
table td {
padding-left: 8px;
height: 60px;
}
table th {
padding-left: 8px;
height: 40px;
}
table thead tr {
height: 60px;
background: #FFED86;
font-size: 16px;
}
table tbody tr {
height: 48px;
border-bottom: 1px solid #E3F1D5;
}
table tbody tr:last-child {
border: 0;
}
table td, table th {
text-align: center;
}
table td.l, table th.l {
text-align: center;
}
table td.c, table th.c {
text-align: center;
}
table td.r, table th.r {
text-align: center;
}
body {
background: #116466;
font: 400 14px 'Calibri','Arial';
padding: 20px;
color: #2C3531;
}
blockquote {
color: white;
text-align: center;
}
caption {
font: 400 30px 'Calibri','Arial';
color: #EDF5E1;
}