-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (66 loc) · 1.14 KB
/
styles.css
File metadata and controls
74 lines (66 loc) · 1.14 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
body {
padding-top: 50px;
}
html {
scroll-padding-top: 70px; /* height of sticky header */
}
table {
border-collapse: collapse;
border: 1px solid black;
text-align: center;
vertical-align: middle;
}
caption {
font-weight: bold;
font-size: 24px;
text-align: left;
color: #333;
margin-bottom: 16px;
}
th, td {
border: 1px solid black;
padding: 8px;
}
thead {
background-color: #25c;
color: white;
font-size: 0.875rem;
text-transform: uppercase;
letter-spacing: 2%;
}
thead th {
width: 25%;
}
tbody tr:nth-child(odd) {
background-color: #fff;
}
tbody tr:nth-child(even) {
background-color: #eee;
}
tbody th {
background-color: #25c;
color: #fff;
text-align: center;
}
tbody tr:nth-child(even) th {
background-color: #25c;
}
#aspca_logo {
width: 209px;
height: 56px;
background: url(images/aspca_spritesheet.png) 0 0;
border: none;
}
.iframe-container {
position: relative;
width: 100%;
padding-bottom: 56.25%;
height: 0;
}
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}