-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.css
More file actions
127 lines (101 loc) · 1.66 KB
/
template.css
File metadata and controls
127 lines (101 loc) · 1.66 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@font-face {
font-family: 'Bahnschrift';
src: url('assets/bahnschrift.ttf');
}
body {
padding: 0 5%;
font-family: 'Bahnschrift';
font-size: 1.3em;
}
.author, .date, h1 {
text-align: center;
}
.author {
font-weight: bold;
}
.date {
margin-bottom: 4em;
font-style: italic;
}
h1 {
color: #E4B108;
text-transform: uppercase;
margin-top: 3em;
}
a {
color: #1555EF;
text-decoration: none;
}
#TOC {
margin-bottom: 3em;
}
h2 {
color: #4C911E;
}
h3 {
color: #E4B108;
}
h4 {
color: #1555EF;
}
#test {
width: 100%;
height: 2em;
background-color: orange;
float: left;
}
#images {
height: 5em;
margin-bottom: 3em;
}
#images p img {
height: 100%;
}
#images p {
height: 100%;
display: flex;
justify-content: space-around;
}
table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
}
th {
background-color: #f2f2f2;
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
tr:nth-child(odd) {
background-color: #f9f9f9;
}
tr.hr-row td {
border: none;
}
hr {
border: none;
border-top: 3px solid #ddd;
margin: 0;
}
.even {
display: none;
}
tr.odd td:nth-of-type(1) {
border: none;
}
tr.odd:nth-of-type(1) td:nth-of-type(1), tr.odd:nth-of-type(29) td:nth-of-type(1){
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
tr.odd:nth-of-type(3) td:nth-of-type(1), tr.odd:nth-of-type(11) td:nth-of-type(1) {
border-top: 1px solid #ddd;
}
tr.odd td:nth-of-type(1) {
border-left: 1px solid #ddd;
}