blob: 28c1d4097f84f9c226491b70eb4b920193d4e6e9 (
plain)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
body {
background-color: DESERT;
color: BLACK;
font: 19px "Georgia", serif;
line-height: 1.65em;
}
header { margin-left: -90px; }
header h1 { display: none; }
h2 {
margin-top: 1.2em;
margin-bottom: 0.4em;
}
p {
margin-top: 0.8em;
margin-bottom: 0.8em;
}
ul {
list-style: disc;
}
.display-block {
display: block;
}
.display-inline-block {
display: inline-block;
}
.position-relative {
position: relative;
}
.position-absolute {
position: absolute;
}
.right-0 {
right: 0;
}
.bottom-0 {
bottom: 0;
}
.margin-top-0\.5 {
margin-top: 0.5em;
}
.margin-top-2 {
margin-top: 2em;
}
.margin-right-auto {
margin-right: auto;
}
.margin-bottom-0\.5 {
margin-bottom: 0.5em;
}
.margin-bottom-0\.63 {
margin-bottom: 0.63em;
}
.margin-bottom-1\.8 {
margin-bottom: 1.8em;
}
.margin-bottom-2 {
margin-bottom: 2em;
}
.margin-left-auto {
margin-left: auto;
}
.padding-top-9 {
padding-top: 9px;
}
.padding-bottom-9 {
padding-bottom: 9px;
}
.content {
width: 640px;
margin-top: 1.8em;
margin-bottom: 2em;
margin-left: 11%;
}
.code-block {
padding: 12px 16px;
overflow: auto;
border: solid 2px HAAGEN_DASZ_BLACK_RASPBERRY;
border-radius: 6px;
box-shadow: inset 1px 1px 10px MILK_CHOCOLATE;
background-color: DRIP_COFFEE;
color: LIMEADE;
text-shadow: 1px 3px 5px DARK_CHOCOLATE;
}
@media screen and (max-width: 767px) {
header {
margin-left: -8px;
}
.content {
margin-left: auto;
margin-right: auto;
}
}
@media screen and (max-width: 710px) {
ul {
margin-left: 2.5em;
}
}
@media screen and (max-width: 669px) {
.content {
width: 96%;
}
}
@media screen and (max-width: 481px) {
.buy-button {
position: static;
display: inline-block;
}
}
|