-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_tables.scss
More file actions
41 lines (36 loc) · 782 Bytes
/
Copy path_tables.scss
File metadata and controls
41 lines (36 loc) · 782 Bytes
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
/* ==========================================================================
TABLES
========================================================================== */
table {
margin-bottom: 1em;
width: 100%;
font-family: $global-font-family;
font-size: $type-size-6;
border-collapse: collapse;
// border: 1px solid $light-gray;
& + table {
margin-top: 1em;
}
}
thead {
background-color: $lighter-gray;
// border-bottom: 1px solid $light-gray;
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
// border-right: 1px solid $light-gray;
}
tr {
padding-bottom: .5em;
padding-top: .5em;
}
td {
padding: .5em;
border-bottom: 1px solid $light-gray;
// border-right: 1px solid $light-gray;
}
tr, td, th {
vertical-align: middle;
}