-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarter-template.css
94 lines (74 loc) · 1.33 KB
/
starter-template.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");
.voffset1 {
margin-top: 10px;
}
body {
padding-top: 60px;
}
section {
padding-top: 40px;
margin-top: -40px;
}
a.greyed {
color: #999;
}
a.greyed:hover {
text-decoration: none;
}
a.greyed:active {
text-decoration: none;
}
/* Table */
.table-wrapper {
-webkit-overflow-scrolling: touch;
overflow-x: auto;
}
table {
margin: 0 0 2em 0;
width: 100%;
}
table tbody tr {
border: solid 1px rgba(210, 215, 217, 0.75);
border-left: 0;
border-right: 0;
}
table tbody tr:nth-child(2n + 1) {
background-color: rgba(230, 235, 237, 0.25);
}
table td {
padding: 0.75em 0.75em;
}
table th {
color: #3d4449;
font-size: 0.9em;
font-weight: 600;
padding: 0 0.75em 0.75em 0.75em;
text-align: left;
}
table thead {
border-bottom: solid 2px rgba(210, 215, 217, 0.75);
}
table tfoot {
border-top: solid 2px rgba(210, 215, 217, 0.75);
}
table.alt {
border-collapse: separate;
}
table.alt tbody tr td {
border: solid 1px rgba(210, 215, 217, 0.75);
border-left-width: 0;
border-top-width: 0;
}
table.alt tbody tr td:first-child {
border-left-width: 1px;
}
table.alt tbody tr:first-child td {
border-top-width: 1px;
}
table.alt thead {
border-bottom: 0;
}
table.alt tfoot {
border-top: 0;
}