-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (100 loc) · 1.89 KB
/
style.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* ==========================================================================
Base styles
========================================================================== */
html {
background-color: #dadada;
font-family: Helvetica, Arial, sans-serif;
height: 100%;
}
body {
background-color: #fff;
padding: 1.5em;
width: 85%;
height: 100%;
max-width: 50em;
margin: 0 auto;
*height: auto;
}
h1 {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-transform: uppercase;
font-size: 2em;
line-height: 1.3125;
margin: 0 0 0.9375em;
}
h2 {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-transform: uppercase;
font-size: 1.4375em;
line-height: 1.34782608695652;
margin: 0 0 0.54838709677419em;
}
p {
font-size: 1em;
line-height: 1.5;
margin: 0 0 1.5em;
max-width: 38.5em;
}
img {
max-width: 100%;
}
section {
display: block;
}
figure {
display: block;
margin: 0 0 1.5em;
}
figcaption {
font-style: italic;
font-size: 0.875em;
line-height: 1.71428571428571;
display: block;
}
/* ==========================================================================
Tabbed UI
========================================================================== */
/* Tabs
========================================================================== */
[role=tablist] {
border-bottom: 1px solid #000;
padding: 0;
margin: 0 0 1.4375em;
}
[role=tab] {
cursor: pointer;
color: #000;
background-color: #eaeaea;
list-style: none;
text-align: center;
line-height: 2.75;
margin: 0 0.25em 0.25em 0;
}
@media (min-width:19.25em) {
[role=tab] {
display: inline-block;
width: 4em;
}
}
@media (min-width:27.3125em) {
[role=tab] {
width: 7em;
}
}
@media (min-width:37.1875em) {
[role=tab] {
width: 10em;
}
}
[aria-selected=true] {
color: #fff;
background-color: #000;
}
/* Prevent FOUC */
.js-tabs #brown,
.js-tabs #ginger {
display: none;
}
.js-tabs .section-title {
display: none;
}