-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
56 lines (49 loc) · 963 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
html {
box-sizing: border-box;
padding: 0;
}
body {
font-family: "Open Sans", sans-serif;
background-color: white;
margin: 0;
padding: 20px 0;
}
h1 {
text-align: center;
color: #0537c1;
font-weight: 700;
}
p {
text-align: right;
}
.content-table {
border-collapse: collapse;
margin: 30px auto;
font-size: 1em;
min-width: 80%;
border-radius: 5px 5px 0 0;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.content-table thead tr {
background-color: #1d1b93;
color: #fff;
text-align: left;
font-weight: bold;
}
.content-table th, .content-table td {
padding: 12px 15px;
}
.content-table tbody {
border-bottom: 1px solid #ddd;
}
.content-table tbody:nth-of-type(2n) {
background-color: #f3f3f3;
}
.content-table tbody:last-of-type {
border-bottom: 2px solid #1d1b93;
}
.content-table tbody.active-row {
font-weight: bold;
color: #1d1b93;
}