-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyleTable.css
More file actions
65 lines (53 loc) · 1.08 KB
/
styleTable.css
File metadata and controls
65 lines (53 loc) · 1.08 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
* {
/* Change your font family */
font-family: 'Futura', sans-serif;
}
.content-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 1em;
min-width: 1500px;
border-radius: 5px 5px 0 0;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
text-align: left;
align-items: left;
justify-content: center;
margin-left: 100px;
margin-top: 20;
}
.content-table thead tr {
background-color: #246583;
color: #ffffff;
text-align: left;
font-weight: bold;
}
.content-table th,
.content-table td {
padding: 12px 15px;
}
.content-table tbody tr {
/* border */
border-bottom: 3px solid #a1a1a1;
}
.content-table tbody tr:nth-of-type(even) {
background-color: #EEE0C9;
}
.content-table tbody tr:nth-of-type(odd) {
background-color: #e9e4dc;
}
.content-table tbody tr:last-of-type {
border-bottom: 2px solid #246583;
}
.content-table tbody tr.active-row {
font-weight: bold;
color: #7cc9ba;
}
.input {
width: 400px;
height: 30px;
}
.submit {
width: 200px;
height: 30px;
}