-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (87 loc) · 1.61 KB
/
style.css
File metadata and controls
101 lines (87 loc) · 1.61 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
}
body {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: #404143;
margin: 20px 50px;
}
img {
width: 150px;
height: 50px;
align-self: top;
}
section {
margin: 20px 0;
}
table {
width: 100%;
font-size: 0.8rem;
font-weight: 400;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
border: solid 1px #404143;
border-top: none;
text-align: left;
border-collapse: collapse;
}
th,
td {
padding: 4px;
border-bottom: solid 1px #404143;
border-right: solid 1px #404143;
}
.flex {
display: flex;
justify-content: space-around;
}
.flex-col {
display: flex;
flex-direction: column;
}
#header {
border: none;
border-bottom: solid 2px #404143;
padding-bottom: 10px;
margin-bottom: 20px;
}
#header td {
border: none;
}
.sub-header {
border-bottom: 3px double #404143;
font-weight: 800;
font-size: 1.2rem;
}
.title {
font-size: 1.5rem;
font-weight: bold;
align-self: flex-end;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.subtitle {
font-size: 1rem;
font-weight: bold;
}
.table-title {
border: solid 2px #404143;
font-weight: 700;
padding: 5px;
margin-top: 30px;
}
.subtable-title {
font-size: 1rem;
border-bottom: double 3px #404143;
padding: 5px;
padding-bottom: 0;
margin-top: 15px;
}
.sub-section {
margin: 10px 30px;
}
.body-text {
font-weight: 400;
font-size: 0.8rem;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}