-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.css
80 lines (67 loc) · 1.46 KB
/
table.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
71
72
73
74
75
76
77
78
79
80
* {
/* Change your font family */
font-family: 'Merriweather', serif;
}
body{
/* position: relative; */
background-image: url('lib.jpg');
background-repeat: no-repeat;
background-size: 100% 240%;
background-blend-mode: multiply;
z-index: -1;
opacity: 1;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
font-size: 20px;
border: 2px solid black;
border-radius: 10px;
background-color: #FFE4C4;
}
a:hover {
background-color: #DAA06D;
color: black;
}
.previous {
background-color: #f1f1f1;
color: black;
}
h1 {
color: white;
text-decoration: underline;
}
.content-table {
background-color: white;
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
min-width: 400px;
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: #009879;
color: #ffffff;
text-align: left;
font-weight: bold;
}
.content-table th,
.content-table td {
padding: 12px 15px;
}
.content-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.content-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
border-bottom: 2px solid #009879;
}
.content-table tbody tr.active-row {
font-weight: bold;
color: #009879;
}