Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * Fonts | 2 * Fonts |
juliandoucette
2017/01/10 20:26:39
We should prefer local("Source Sans Pro") over url
| |
3 */ | 3 */ |
4 | 4 |
5 @font-face { | 5 @font-face |
6 font-family: "Source Sans Pro"; | 6 { |
7 font-family: 'Source Sans Pro'; | |
7 font-weight: 300; | 8 font-weight: 300; |
8 font-style: normal; | 9 font-style: normal; |
9 src: url("/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.eot"); | 10 font-stretch: normal; |
10 src: url("/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.eot?#iefix") format(" embedded-opentype"), local("Source Sans Pro Light"), local("Source-Sans-Pro-300" ), url("/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.woff2") format("woff2"), url("/fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.woff") format("woff"), url(" /fonts/Source-Sans-Pro-300/Source-Sans-Pro-300.ttf") format("truetype"), url("/f onts/Source-Sans-Pro-300/Source-Sans-Pro-300.svg#SourceSansPro") format("svg"); } | 11 src: local('Source Sans Pro Light'), |
11 | 12 local('SourceSansPro-Light'), |
12 @font-face { | 13 url('../fonts/SourceSansPro-Light.eot') format('embedded-opentype'), |
13 font-family: "Source Sans Pro"; | 14 url('../fonts/SourceSansPro-Light.ttf.woff2') format('woff2'), |
15 url('../fonts/SourceSansPro-Light.otf.woff') format('woff'), | |
16 url('../fonts/SourceSansPro-Light.otf') format('opentype'), | |
17 url('../fonts/SourceSansPro-Light.ttf') format('truetype'); | |
18 } | |
19 | |
20 @font-face | |
21 { | |
22 font-family: 'Source Sans Pro'; | |
23 font-weight: 300; | |
24 font-style: italic; | |
25 font-stretch: normal; | |
26 src: local('Source Sans Pro Light Italic'), | |
27 local('SourceSansPro-LightIt'), | |
28 url('../fonts/SourceSansPro-LightIt.eot') format('embedded-opentype'), | |
29 url('../fonts/SourceSansPro-LightIt.ttf.woff2') format('woff2'), | |
30 url('../fonts/SourceSansPro-LightIt.otf.woff') format('woff'), | |
31 url('../fonts/SourceSansPro-LightIt.otf') format('opentype'), | |
32 url('../fonts/SourceSansPro-LightIt.ttf') format('truetype'); | |
33 } | |
34 | |
35 @font-face | |
36 { | |
37 font-family: 'Source Sans Pro'; | |
14 font-weight: 400; | 38 font-weight: 400; |
15 font-style: normal; | 39 font-style: normal; |
16 src: url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot"); | 40 font-stretch: normal; |
17 src: url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.eot?#iefix") format("embedded-opentype"), local("Source Sans Pro"), local("Source-Sans-Pro-re gular"), url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.woff2") for mat("woff2"), url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.woff") format("woff"), url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regular.ttf ") format("truetype"), url("/fonts/Source-Sans-Pro-regular/Source-Sans-Pro-regul ar.svg#SourceSansPro") format("svg"); } | 41 src: local('Source Sans Pro'), |
18 | 42 local('SourceSansPro-Regular'), |
19 @font-face { | 43 url('../fonts/SourceSansPro-Regular.eot') format('embedded-opentype'), |
20 font-family: "Source Sans Pro"; | 44 url('../fonts/SourceSansPro-Regular.ttf.woff2') format('woff2'), |
21 font-weight: 700; | 45 url('../fonts/SourceSansPro-Regular.otf.woff') format('woff'), |
22 font-style: normal; | 46 url('../fonts/SourceSansPro-Regular.otf') format('opentype'), |
23 src: url("/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.eot"); | 47 url('../fonts/SourceSansPro-Regular.ttf') format('truetype'); |
24 src: url("/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.eot?#iefix") format(" embedded-opentype"), local("Source Sans Pro Bold"), local("Source-Sans-Pro-700") , url("/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.woff2") format("woff2"), u rl("/fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.woff") format("woff"), url("/ fonts/Source-Sans-Pro-700/Source-Sans-Pro-700.ttf") format("truetype"), url("/fo nts/Source-Sans-Pro-700/Source-Sans-Pro-700.svg#SourceSansPro") format("svg"); } | 48 } |
25 | 49 |
26 /* | 50 /* |
27 * General layout | 51 * General layout |
28 */ | 52 */ |
29 | 53 |
54 html | |
55 { | |
56 font-family: 'Source Sans Pro', sans-serif; | |
57 font-size: 18px; | |
58 font-weight: 300; | |
59 line-height: 1.333333; | |
60 color: #161616; | |
61 } | |
62 | |
30 body | 63 body |
31 { | 64 { |
32 font-family: "Source Sans Pro", sans-serif; | 65 padding: 84px 0 0 0; |
33 font-size: 17px; | 66 margin: 0; |
juliandoucette
2017/01/10 20:26:39
The issue says 18. Why 17?
| |
34 font-weight: 300; | 67 } |
35 line-height: 24px; | 68 |
69 a | |
70 { | |
71 font-weight: 400; | |
72 text-decoration: none; | |
36 color: #161616; | 73 color: #161616; |
37 padding: 0; | |
38 margin: 0; | |
39 padding-top: 78px; | |
40 } | |
41 | |
42 a | |
43 { | |
44 color: #161616; | |
45 text-decoration: none; | |
juliandoucette
2017/01/10 20:26:39
Please use spaces instead of tabs (everywhere).
| |
46 font-weight: 500; | |
juliandoucette
2017/01/10 20:26:39
We don't have this font in 500.
| |
47 } | 74 } |
48 | 75 |
49 a:hover | 76 a:hover |
50 { | 77 { |
51 » text-decoration: underline; | 78 text-decoration: underline; |
52 } | 79 } |
53 | 80 |
54 img | 81 img |
55 { | 82 { |
56 border-width: 0px; | 83 border-width: 0px; |
57 } | 84 } |
58 | 85 |
59 header, | 86 header, |
60 footer, | 87 footer, |
61 nav | 88 nav |
62 { | 89 { |
63 display: block; | 90 display: block; |
64 } | |
65 | |
66 h1, h2, h3, h4, h5, h6 | |
67 { | |
68 color: #333; | |
69 } | 91 } |
70 | 92 |
71 h1 | 93 h1 |
72 { | 94 { |
73 font-size:28px; | 95 font-size:28px; |
74 } | 96 } |
75 | 97 |
76 h2 | 98 h2 |
77 { | 99 { |
78 font-size:24px; | 100 font-size:24px; |
(...skipping 22 matching lines...) Expand all Loading... | |
101 #header | 123 #header |
102 { | 124 { |
103 position: fixed; | 125 position: fixed; |
104 background-color: #fff; | 126 background-color: #fff; |
105 width: 100%; | 127 width: 100%; |
106 top: 0px; | 128 top: 0px; |
107 left: 0px; | 129 left: 0px; |
108 box-shadow: 0px 0px 12px rgba(0,0,0, 0.09); | 130 box-shadow: 0px 0px 12px rgba(0,0,0, 0.09); |
109 z-index: 10000; | 131 z-index: 10000; |
110 text-align: right; | 132 text-align: right; |
133 text-transform: uppercase; | |
111 } | 134 } |
112 | 135 |
113 #header .content-block | 136 #header .content-block |
114 { | 137 { |
115 position: relative; | 138 position: relative; |
116 padding: 15px 10px; | 139 padding: 10px; |
117 min-height: 32px; | 140 min-height: 32px; |
118 } | 141 } |
119 | 142 |
143 #header.top | |
144 { | |
145 box-shadow: none; | |
146 } | |
147 | |
120 #header.top .content-block | 148 #header.top .content-block |
121 { | 149 { |
122 padding: 20px 10px; | 150 padding: 22px 10px; |
123 } | 151 } |
124 | 152 |
125 #logo | 153 #logo |
126 { | 154 { |
127 position: absolute; | 155 position: absolute; |
128 top: 50%; | 156 top: 50%; |
129 left: 10px; | 157 left: 10px; |
130 margin-top: -20px; | 158 margin-top: -20px; |
131 height: 40px; | 159 height: 40px; |
132 } | 160 } |
133 | 161 |
134 #logo img | 162 #logo img |
135 { | 163 { |
136 height: 100%; | 164 height: 100%; |
137 } | 165 } |
138 | 166 |
139 #header .menu-button | 167 #header .menu-button |
140 { | 168 { |
141 margin: 0px 0px 0px 20px; | 169 margin: 0px 5px 0px 20px; |
142 } | 170 } |
143 | 171 |
144 #menu | 172 #menu |
145 { | 173 { |
146 display: inline; | 174 display: inline; |
147 vertical-align: middle; | 175 vertical-align: middle; |
148 } | 176 } |
149 | 177 |
150 .assistive-text | 178 .assistive-text |
151 { | 179 { |
152 position: absolute !important; | 180 position: absolute !important; |
153 height: 1px; | 181 height: 1px; |
154 width: 1px; | 182 width: 1px; |
155 overflow: hidden; | 183 overflow: hidden; |
156 clip: rect(1px, 1px, 1px, 1px); | 184 clip: rect(1px, 1px, 1px, 1px); |
157 } | 185 } |
158 | 186 |
159 .menu-list | 187 .menu-list |
160 { | 188 { |
161 display: inline; | 189 display: inline; |
162 margin: 0px; | 190 margin: 0px; |
163 font-size: 15px; | 191 font-size: 16px; |
164 list-style: none; | 192 list-style: none; |
165 } | 193 } |
166 | 194 |
167 .menu-list li | 195 .menu-list li |
168 { | 196 { |
169 display: inline; | 197 display: inline; |
170 font-weight: bold; | 198 font-weight: bold; |
171 white-space: nowrap; | 199 white-space: nowrap; |
172 } | 200 } |
173 | 201 |
174 .menu-list li a | 202 .menu-list li a |
175 { | 203 { |
176 color: #979797; | 204 color: #979797; |
177 padding: 0 8px; | 205 padding: 0 8px; |
178 text-transform: uppercase; | |
juliandoucette
2017/01/10 20:26:39
Please use 2 spaces (everywhere).
| |
179 } | 206 } |
180 | 207 |
181 .menu-list li:hover > a, | 208 .menu-list li:hover > a, |
182 .menu-list li.current-menu-item > a | 209 .menu-list li.current-menu-item > a |
183 { | 210 { |
184 color: #373737; | 211 text-decoration: none; |
212 color: #161616; | |
185 } | 213 } |
186 | 214 |
187 #header-hamburger | 215 #header-hamburger |
188 { | 216 { |
189 display: none; | 217 display: none; |
190 } | 218 } |
191 | |
192 #header-hamburger:hover .icon-bar, | |
193 #header-hamburger:focus .icon-bar, | |
194 #header-hamburger:active .icon-bar | |
195 { | |
196 background-color: #000; | |
197 } | |
198 | |
199 | 219 |
200 .icon-bar | 220 .icon-bar |
201 { | 221 { |
202 display: block; | 222 display: block; |
203 width: 22px; | 223 width: 22px; |
204 height: 2px; | 224 height: 2px; |
205 border-radius: 1px; | 225 background-color: #fff; |
206 background-color: #888; | 226 } |
227 | |
228 #header-hamburger:hover .icon-bar, | |
229 #header-hamburger:active .icon-bar, | |
230 #header-hamburger:focus .icon-bar | |
231 { | |
232 background-color: #161616; | |
207 } | 233 } |
208 | 234 |
209 .icon-bar+.icon-bar | 235 .icon-bar+.icon-bar |
210 { | 236 { |
211 margin-top: 4px; | 237 margin-top: 4px; |
212 } | 238 } |
213 | 239 |
214 #content:before, | 240 #content:before, |
215 #content:after, | 241 #content:after, |
216 .columns-container:before, | 242 .columns-container:before, |
217 .columns-container:after | 243 .columns-container:after |
218 { | 244 { |
219 content: " "; | 245 content: " "; |
220 display: table; | 246 display: table; |
221 } | 247 } |
222 | 248 |
223 #content:after, | 249 #content:after, |
224 .columns-container:after | 250 .columns-container:after |
225 { | 251 { |
226 clear: both; | 252 clear: both; |
227 } | 253 } |
228 | 254 |
229 #footer | 255 #footer |
230 { | 256 { |
231 color: #666; | 257 color: #fff; |
232 background-color: #252525; | 258 background-color: #2d2d2d; |
233 padding-top: 30px; | 259 padding-top: 30px; |
234 padding-bottom: 50px; | 260 padding-bottom: 50px; |
235 } | 261 } |
236 | 262 |
237 #footer a | 263 #footer a |
238 { | 264 { |
239 color: #c2c2c2; | 265 color: #c2c2c2; |
240 } | 266 } |
241 | 267 |
242 #footer a:hover | 268 #footer a:hover |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
292 | 318 |
293 .content-block, | 319 .content-block, |
294 .page-title h1 | 320 .page-title h1 |
295 { | 321 { |
296 max-width: 1080px; | 322 max-width: 1080px; |
297 margin: 0 auto; | 323 margin: 0 auto; |
298 } | 324 } |
299 | 325 |
300 .heading | 326 .heading |
301 { | 327 { |
302 margin: 0; | |
303 margin-bottom: 20px; | 328 margin-bottom: 20px; |
304 font-weight: normal; | 329 font-size: 28px; |
305 height: 0.7em; | 330 font-weight: 400; |
306 } | 331 } |
307 | 332 |
308 .heading span | 333 .heading span |
309 { | 334 { |
310 padding: 0; | 335 padding: 0; |
311 padding-right: 10px; | 336 padding-right: 10px; |
312 background-color: #fff; | 337 background-color: #fff; |
313 } | 338 } |
314 | 339 |
315 .centered | 340 .centered |
316 { | 341 { |
317 text-align: center; | 342 text-align: center; |
318 } | 343 } |
319 | 344 |
320 .centered span | 345 .centered span |
321 { | 346 { |
322 padding-left: 10px; | 347 padding-left: 10px; |
323 } | 348 } |
324 | 349 |
325 button, .button, .menu-button | 350 button, .button, .menu-button |
326 { | 351 { |
327 display: inline-block; | 352 display: inline-block; |
328 cursor: pointer; | 353 padding: 0px 20px; |
329 background-color: #161616; | 354 background-color: #161616; |
330 color: #ffffff; | 355 border: 2px solid #161616; |
356 border-radius: 0px; | |
357 color: #fff; | |
331 font-size: 14px; | 358 font-size: 14px; |
332 » border: 1px solid #ffffff; | 359 font-weight: 400; |
333 font-weight: bold; | |
334 line-height: 36px; | 360 line-height: 36px; |
335 white-space: nowrap; | 361 white-space: nowrap; |
336 height: 36px; | 362 cursor: pointer; |
337 padding: 0 20px; | |
338 » text-transform: uppercase; | |
339 } | 363 } |
340 | 364 |
341 button:hover, | 365 button:hover, |
342 button:focus, | 366 button:focus, |
343 .button:hover, | 367 .button:hover, |
344 .button:focus, | 368 .button:focus, |
345 .menu-button:hover, | 369 .menu-button:hover, |
346 .menu-button:focus | 370 .menu-button:focus |
347 { | 371 { |
372 background-color: #fff; | |
348 color: #161616; | 373 color: #161616; |
349 » background-color: #ffffff; | 374 text-decoration: none; |
350 » text-decoration: none; | |
351 » border: 1px solid #161616; | |
352 } | 375 } |
353 | 376 |
354 .page-title | 377 .page-title |
355 { | 378 { |
356 background-image: url(/images/subtlenet2.png); | 379 background-color: #f2f2f2; |
357 background-color: #e9e9e5; | |
358 padding-top: 25px; | 380 padding-top: 25px; |
359 padding-bottom: 25px; | 381 padding-bottom: 25px; |
360 margin-bottom: 40px; | 382 margin-bottom: 40px; |
361 } | 383 } |
362 | 384 |
363 .sidebar-left .contact-person | 385 .sidebar-left .contact-person |
364 { | 386 { |
365 text-align: right; | 387 text-align: right; |
366 margin-top: 20px; | 388 margin-top: 20px; |
367 float: right; | 389 float: right; |
(...skipping 26 matching lines...) Expand all Loading... | |
394 margin-bottom: 25px; | 416 margin-bottom: 25px; |
395 } | 417 } |
396 | 418 |
397 #our-work | 419 #our-work |
398 { | 420 { |
399 padding-top: 50px; | 421 padding-top: 50px; |
400 padding-bottom: 50px; | 422 padding-bottom: 50px; |
401 background-color: #f2f2f2; | 423 background-color: #f2f2f2; |
402 } | 424 } |
403 | 425 |
426 #our-work h3 | |
427 { | |
428 text-transform: uppercase; | |
429 } | |
430 | |
404 #media | 431 #media |
405 { | 432 { |
406 margin-top: 25px; | 433 margin-top: 25px; |
407 } | 434 } |
408 | 435 |
409 #our-work .heading span | 436 #our-work .heading span |
410 { | 437 { |
411 background-color: #f0f0f0; | 438 background-color: #f0f0f0; |
412 } | |
413 | |
414 #our-work .column | |
415 { | |
416 text-align: left; | |
417 } | 439 } |
418 | 440 |
419 .profile | 441 .profile |
420 { | 442 { |
421 text-align: center; | 443 text-align: center; |
422 margin-top: 0px; | 444 margin-top: 0px; |
423 margin-bottom: 30px; | 445 margin-bottom: 30px; |
424 } | 446 } |
425 | 447 |
426 .profile-image, | 448 .profile-image, |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
519 .two-sidebars .column | 541 .two-sidebars .column |
520 { | 542 { |
521 width: 48.75%; | 543 width: 48.75%; |
522 } | 544 } |
523 | 545 |
524 .four-columns .column | 546 .four-columns .column |
525 { | 547 { |
526 width: 23.125%; | 548 width: 23.125%; |
527 } | 549 } |
528 | 550 |
529 /* | |
530 .four-columns .columns h1,h2,h3,h4,h5,h6 { | |
juliandoucette
2017/01/10 20:26:39
- Please delete commented code blocks
- This selec
| |
531 text-transform: uppercase; | |
532 } | |
533 */ | |
534 | |
535 .one-sidebar .sidebar-left, | 551 .one-sidebar .sidebar-left, |
536 .one-sidebars .sidebar-right, | 552 .one-sidebars .sidebar-right, |
537 .two-sidebars .sidebar-left, | 553 .two-sidebars .sidebar-left, |
538 .two-sidebars .sidebar-right | 554 .two-sidebars .sidebar-right |
539 { | 555 { |
540 width: 23.125%; | 556 width: 23.125%; |
541 } | 557 } |
542 | 558 |
543 .column:first-child | 559 .column:first-child |
544 { | 560 { |
(...skipping 26 matching lines...) Expand all Loading... | |
571 } | 587 } |
572 | 588 |
573 .ui-tabs-nav li | 589 .ui-tabs-nav li |
574 { | 590 { |
575 background-color: #FBFBFB; | 591 background-color: #FBFBFB; |
576 padding: 0; | 592 padding: 0; |
577 background-image: none; | 593 background-image: none; |
578 list-style: none; | 594 list-style: none; |
579 float: left; | 595 float: left; |
580 margin: 0; | 596 margin: 0; |
581 | |
582 border: 1px solid #E1E1E1; | 597 border: 1px solid #E1E1E1; |
583 border-left: none; | 598 border-left: none; |
584 border-bottom-color: #CFCFCF; | 599 border-bottom-color: #CFCFCF; |
585 border-top-left-radius: 3px; | |
586 border-top-right-radius: 3px; | |
587 -webkit-border-top-left-radius: 3px; | |
588 -webkit-border-top-right-radius: 3px; | |
589 | |
590 transition: all 0.2s linear; | 600 transition: all 0.2s linear; |
591 -moz-transition: all 0.2s linear; | 601 -moz-transition: all 0.2s linear; |
592 -webkit-transition: all 0.2s linear; | 602 -webkit-transition: all 0.2s linear; |
593 -o-transition: all 0.2s linear; | 603 -o-transition: all 0.2s linear; |
594 } | 604 } |
595 | 605 |
606 .ui-tabs-nav-vertical li, | |
596 .ui-tabs-nav li:first-child | 607 .ui-tabs-nav li:first-child |
597 { | 608 { |
598 border-left: 1px solid #E1E1E1; | 609 border-left: 1px solid #E1E1E1; |
599 border-top: 1px solid #E1E1E1; | 610 border-top: 1px solid #E1E1E1; |
600 } | 611 } |
601 | 612 |
602 .ui-tabs-nav li.ui-tabs-active, | 613 .ui-tabs-nav li.ui-tabs-active, |
603 .ui-tabs-nav li:hover | 614 .ui-tabs-nav li:hover |
604 { | 615 { |
605 background-color: #fff; | 616 background-color: #fff; |
606 border-top: 2px solid #161616; | 617 border-top: 2px solid #161616; |
607 border-bottom: none; | 618 border-bottom: none; |
608 position: relative; | 619 position: relative; |
609 top: 2px; | 620 top: 1px; |
621 } | |
622 | |
623 .ui-tabs-nav-vertical li.ui-tabs-active, | |
624 .ui-tabs-nav-vertical li:hover | |
625 { | |
626 border: 1px solid #161616; | |
627 background-color: #161616; | |
628 top: 0px; | |
629 } | |
630 | |
631 .ui-tabs-nav-vertical li.ui-tabs-active a, | |
632 .ui-tabs-nav-vertical li:hover a | |
633 { | |
634 color: #fff; | |
635 text-decoration: none; | |
610 } | 636 } |
611 | 637 |
612 .ui-tabs-active .ui-tabs-anchor | 638 .ui-tabs-active .ui-tabs-anchor |
613 { | 639 { |
614 cursor: default; | 640 cursor: default; |
615 } | 641 } |
616 | 642 |
617 .ui-tabs-anchor | 643 .ui-tabs-anchor |
618 { | 644 { |
619 border-bottom: none; | 645 border-bottom: none; |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
798 } | 824 } |
799 | 825 |
800 #fair-company-logo | 826 #fair-company-logo |
801 { | 827 { |
802 float: right; | 828 float: right; |
803 } | 829 } |
804 | 830 |
805 .why-work-here-button | 831 .why-work-here-button |
806 { | 832 { |
807 background-color: #747474; | 833 background-color: #747474; |
834 border-color: #747474; | |
808 } | 835 } |
809 | 836 |
810 .why-work-here-button:hover, | 837 .why-work-here-button:hover, |
838 .why-work-here-button:active, | |
811 .why-work-here-button:focus | 839 .why-work-here-button:focus |
812 { | 840 { |
813 background-color: #333; | 841 background-color: #fff; |
842 border-color: #747474; | |
843 color: #747474; | |
814 } | 844 } |
815 | 845 |
816 | 846 |
817 @media (max-width: 768px) | 847 @media (max-width: 768px) |
818 { | 848 { |
819 body | 849 body |
820 { | 850 { |
821 padding-top: 50px; | 851 padding-top: 50px; |
822 } | 852 } |
823 | 853 |
(...skipping 16 matching lines...) Expand all Loading... | |
840 } | 870 } |
841 | 871 |
842 #menu.open | 872 #menu.open |
843 { | 873 { |
844 display: block; | 874 display: block; |
845 } | 875 } |
846 | 876 |
847 #header-hamburger | 877 #header-hamburger |
848 { | 878 { |
849 position: absolute; | 879 position: absolute; |
850 top: 9px; | 880 top: 7px; |
851 right: 10px; | 881 right: 6px; |
852 display: block; | 882 display: block; |
853 padding: 0px; | 883 height: 36px; |
854 margin: 0px 5px; | 884 width: 36px; |
855 background: none; | 885 margin: 0; |
886 padding: 0px 5px; | |
856 } | 887 } |
857 | 888 |
858 .menu-list | 889 .menu-list |
859 { | 890 { |
860 margin-top: 45px; | 891 margin-top: 45px; |
861 padding: 0px; | 892 padding: 0px; |
862 display: block; | 893 display: block; |
863 } | 894 } |
864 | 895 |
865 .menu-list > li | 896 .menu-list > li |
866 { | 897 { |
867 display: block; | 898 display: block; |
868 border-top: 1px solid #eee; | 899 border-top: 1px solid #eee; |
869 } | 900 } |
870 | 901 |
871 .menu-list > li > a | 902 .menu-list > li > a |
872 { | 903 { |
873 display: block; | 904 display: block; |
874 margin: 0px; | 905 margin: 0px; |
875 padding: 10px; | 906 padding: 10px; |
876 font-size: 14px; | 907 font-size: 14px |
877 } | 908 } |
878 | 909 |
879 .menu-button | 910 .menu-button |
880 { | 911 { |
881 position: absolute; | 912 position: absolute; |
882 top: 9px; | 913 top: 7px; |
883 right: 50px; | 914 right: 43px; |
884 height: 32px; | 915 height: 32px; |
885 padding: 0 10px; | 916 padding: 0 6px; |
886 line-height: 32px; | 917 line-height: 32px; |
887 font-size: 14px; | 918 font-size: 14px; |
888 } | 919 } |
889 | 920 |
890 .columns-container .column | 921 .columns-container .column |
891 { | 922 { |
892 width: 100%; | 923 width: 100%; |
893 margin-left: 0; | 924 margin-left: 0; |
894 clear: both; | 925 clear: both; |
895 } | 926 } |
(...skipping 15 matching lines...) Expand all Loading... | |
911 } | 942 } |
912 | 943 |
913 @media (min-width: 751px) | 944 @media (min-width: 751px) |
914 { | 945 { |
915 .ui-tabs-nav-vertical | 946 .ui-tabs-nav-vertical |
916 { | 947 { |
917 padding: .2em .1em .2em .2em; | 948 padding: .2em .1em .2em .2em; |
918 float: left; width: 100%; | 949 float: left; width: 100%; |
919 border-bottom: none; | 950 border-bottom: none; |
920 } | 951 } |
952 | |
921 .ui-tabs-nav-vertical li | 953 .ui-tabs-nav-vertical li |
922 { | 954 { |
923 clear: left; | 955 clear: left; |
924 width: 100%; | 956 width: 100%; |
925 border-bottom-width: 1px !important; | |
926 border-left: 1px solid #E1E1E1 !important; | |
927 margin: 0 -1px .2em 0; | 957 margin: 0 -1px .2em 0; |
928 } | 958 } |
959 | |
929 .ui-tabs-nav-vertical li.ui-tabs-active | 960 .ui-tabs-nav-vertical li.ui-tabs-active |
930 { | 961 { |
931 padding-bottom: 0; | 962 padding-bottom: 0; |
932 padding-right: .1em; | 963 padding-right: .1em; |
933 border-right-width: 1px; | 964 border-right-width: 1px; |
934 border-right-width: 1px; | 965 border-right-width: 1px; |
935 } | 966 } |
936 | 967 |
937 #panels-openings | 968 #panels-openings |
938 { | 969 { |
939 margin-top: -40px; | 970 margin-top: -40px; |
940 } | 971 } |
941 } | 972 } |
LEFT | RIGHT |