-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpat.css
66 lines (62 loc) · 1.63 KB
/
vpat.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
:root {
--border-color: #bdbdbd;
--table-row-background: #f2f3f3;
--border: 1px solid var(--border-color);
--space--4: 4px;
--space--8: 8px;
--space--12: 12px;
--space--16: 16px;
--space--20: 20px;
--space--24: 24px;
--space--36: 36px; }
html {
box-sizing: border-box; }
*,
*:before,
*:after {
box-sizing: inherit; }
.vpat {
color: #333;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.5; }
.vpat .vpat__section {
margin-bottom: var(--space--36); }
.vpat .heading__page {
font-size: 36px;
font-weight: 700; }
.vpat .heading__section {
font-size: 28px; }
.vpat .heading__criteria {
font-size: 20px; }
.vpat .heading__section,
.vpat .heading__criteria {
font-weight: 700;
margin-bottom: var(--space--8); }
.vpat .text--bold {
font-weight: 700; }
.vpat .vpat__table {
border: var(--border);
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 320px;
width: 100%; }
.vpat .vpat__table th {
font-size: 16px;
padding: var(--space--16) var(--space--8);
text-align: left; }
.vpat .vpat__table tbody tr:nth-child(odd) {
background: var(--table-row-background); }
.vpat .vpat__table td {
padding: var(--space--20) var(--space--8);
vertical-align: top; }
.vpat .vpat__table td p {
margin: 0 0 var(--space--8) 0; }
.vpat .vpat__table td p:last-of-type {
margin-bottom: 0; }
.vpat .vpat__table td, .vpat .vpat__table th {
border: var(--border);
border-collapse: collapse; }
/*# sourceMappingURL=vpat.css.map */