]>
Commit | Line | Data |
---|---|---|
1 | /********************* | |
2 | * Gontcharova Theme * | |
3 | *********************/ | |
4 | ||
5 | body { | |
6 | margin: 0; | |
7 | background-color: #FFF5E3; | |
8 | font-family: Helvetica, Arial, sans-serif; | |
9 | display: flex; | |
10 | flex-flow: row nowrap; | |
11 | transition: all 0.5s ease-in-out; | |
12 | } | |
13 | ||
14 | header { | |
15 | margin-top: -20px; | |
16 | } | |
17 | ||
18 | .content-wrapper { | |
19 | margin: 100px 0 0 10px; | |
20 | width: 45vw; | |
21 | } | |
22 | ||
23 | header a, header a:visited { | |
24 | font-family: 'Helvetica Neue', 'Arial Nova', Helvetica, Arial, Freesans, sans-serif; | |
25 | font-weight: 100; | |
26 | font-size: 96px; | |
27 | text-transform: uppercase; | |
28 | text-decoration: none; | |
29 | color: black; | |
30 | } | |
31 | ||
32 | h1 { | |
33 | font-family: 'Bodoni 72', 'Century Schoolbook L', 'Rockwell Nova', serif; | |
34 | font-weight: 300; | |
35 | font-size: 48px; | |
36 | } | |
37 | ||
38 | ul, p { | |
39 | font-size: 16px; | |
40 | font-weight: 300; | |
41 | } | |
42 | ||
43 | ul { | |
44 | list-style: square; | |
45 | } | |
46 | ||
47 | ul a, | |
48 | p a { | |
49 | text-transform: lowercase; | |
50 | font-weight: 600; | |
51 | color: #C7434B; | |
52 | } | |
53 | ||
54 | ul a:visited, | |
55 | p a:visited { | |
56 | color: #551C22; | |
57 | } | |
58 | ||
59 | ul a:hover, | |
60 | p a:hover { | |
61 | color: #933B3C; | |
62 | } | |
63 | ||
64 | ul a:active, | |
65 | p a:active { | |
66 | color: #A9938F; | |
67 | } | |
68 | ||
69 | ul span, | |
70 | p span { | |
71 | font-style: oblique; | |
72 | color: #9E7764; | |
73 | } | |
74 | ||
75 | @media only screen and (max-width: 1024px) { | |
76 | header a { | |
77 | font-size: 72px; | |
78 | } | |
79 | } | |
80 | ||
81 | @media only screen and (max-width: 700px) { | |
82 | body { | |
83 | flex-flow: column wrap; | |
84 | } | |
85 | ||
86 | header { | |
87 | width: 45vw; | |
88 | } | |
89 | ||
90 | .content-wrapper { | |
91 | margin: 20px; | |
92 | width: auto; | |
93 | } | |
94 | } | |
95 | ||
96 | video { | |
97 | width: 100%; | |
98 | } | |
99 | ||
100 | /************ | |
101 | * Tapestry * | |
102 | ************/ | |
103 | ||
104 | .orangered { background-color: #C84A0A; } | |
105 | .red { background-color: #C7434B; } | |
106 | .brown { background-color: #551C22; } | |
107 | .redbrown { background-color: #933B3C; } | |
108 | .lightbrown { background-color: #9E7764; } | |
109 | .grey { background-color: #A9938F; } | |
110 | .sand { background-color: #D2BE9A; } | |
111 | ||
112 | .tapestry { | |
113 | order: -1; | |
114 | } | |
115 | ||
116 | .tapestry, | |
117 | .tapestry div { | |
118 | transition: all 0.5s ease-in-out; | |
119 | } | |
120 | ||
121 | /* Large Tapestry */ | |
122 | ||
123 | .tapestry { | |
124 | max-width: 42vw; | |
125 | max-height: 42vw; | |
126 | display: flex; | |
127 | flex-flow: row wrap; | |
128 | margin: 100px 0 0 100px; | |
129 | } | |
130 | ||
131 | ||
132 | .red { | |
133 | width: 14vw; | |
134 | height: 14vw; | |
135 | } | |
136 | ||
137 | .red:hover { | |
138 | margin: 3.5vw; | |
139 | width: 7vw; | |
140 | height: 7vw; | |
141 | } | |
142 | ||
143 | .brown, | |
144 | .orangered, | |
145 | .grey { | |
146 | width: 14vw; | |
147 | height: 28vw; | |
148 | } | |
149 | ||
150 | .grey:hover { | |
151 | width:7vw; | |
152 | } | |
153 | ||
154 | .sand { | |
155 | width: 42vw; | |
156 | height: 14vw; | |
157 | } | |
158 | ||
159 | .sand:hover { | |
160 | height: 2vw; | |
161 | } | |
162 | ||
163 | .redbrown { | |
164 | width: 7vw; | |
165 | height: 14vw; | |
166 | } | |
167 | ||
168 | .redbrown:hover { | |
169 | margin-bottom: 7vw; | |
170 | } | |
171 | ||
172 | .lightbrown { | |
173 | width: 7vw; | |
174 | height: 7vw; | |
175 | } | |
176 | ||
177 | .lightbrown:hover { | |
178 | height: 28vw; | |
179 | } | |
180 | ||
181 | .brown { | |
182 | display: flex; | |
183 | flex-flow: row wrap; | |
184 | align-content: flex-end; | |
185 | align-items: flex-end; | |
186 | } | |
187 | ||
188 | @media only screen and (max-width: 1024px) { | |
189 | .tapestry { | |
190 | max-width: 32vw; | |
191 | } | |
192 | ||
193 | .red { | |
194 | width: 32vw; | |
195 | height: 4vw; | |
196 | } | |
197 | ||
198 | .red:hover { | |
199 | margin: 0; | |
200 | width: 64vw; | |
201 | height: 16vw; | |
202 | } | |
203 | ||
204 | .orangered { | |
205 | width: 16vw; | |
206 | height: 20vw; | |
207 | } | |
208 | ||
209 | .brown { | |
210 | width: 32vw; | |
211 | height: 16vw; | |
212 | } | |
213 | ||
214 | .redbrown { | |
215 | width: 16vw; | |
216 | height: 16vw; | |
217 | position: relative; | |
218 | top: -16vw; | |
219 | left: 16vw; | |
220 | } | |
221 | ||
222 | .lightbrown { | |
223 | width: 8vw; | |
224 | height: 8vw; | |
225 | } | |
226 | ||
227 | .grey { | |
228 | height: 16vw; | |
229 | width: 24vw; | |
230 | } | |
231 | ||
232 | .sand { | |
233 | width: 8vw; | |
234 | height: 32vw; | |
235 | } | |
236 | } | |
237 | ||
238 | @media only screen and (max-width: 700px) { | |
239 | .tapestry { | |
240 | max-width: 80vw; | |
241 | max-height: 8vw; | |
242 | margin: 0px; | |
243 | flex-flow: column wrap; | |
244 | } | |
245 | ||
246 | .red { | |
247 | width: 4vw; | |
248 | height: 4vw; | |
249 | } | |
250 | ||
251 | .red:hover { | |
252 | width: 24vw; | |
253 | height: 24vw; | |
254 | } | |
255 | ||
256 | .orangered { | |
257 | width: 16vw; | |
258 | height: 8vw; | |
259 | } | |
260 | ||
261 | .brown { | |
262 | width: 32vw; | |
263 | height: 8vw; | |
264 | } | |
265 | ||
266 | .redbrown { | |
267 | width: 24vw; | |
268 | height: 4vw; | |
269 | position: relative; | |
270 | top: 0; | |
271 | left: 0; | |
272 | } | |
273 | ||
274 | .lightbrown { | |
275 | width: 8vw; | |
276 | height: 32vw; | |
277 | } | |
278 | ||
279 | .lightbrown:hover { | |
280 | height: 1vw; | |
281 | } | |
282 | ||
283 | .grey { | |
284 | height: 4vw; | |
285 | width: 38vw; | |
286 | } | |
287 | ||
288 | .sand { | |
289 | width: 8vw; | |
290 | height: 32vw; | |
291 | } | |
292 | ||
293 | .sand:hover { | |
294 | width: 10vw; | |
295 | height: 6vw; | |
296 | } | |
297 | } |