blob: 9c5feab5944cf6b4bd097352155a2d558282e4e6 (
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
|
/*
* Skeleton V1.0.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 5/20/2011
*/
/* Table of Content
==================================================
#Site Styles
#Page Styles
#Media Queries
#Font-Face */
/* #Site Styles
================================================== */
/* #Page Styles
================================================== */
/* #Media Queries
================================================== */
/* iPad Portrait/Browser */
@media only screen and (min-width: 768px) and (max-width: 991px) {}
/* Mobile/Browser */
@media only screen and (max-width: 767px) {}
/* Mobile Landscape/Browser */
@media only screen and (min-width: 480px) and (max-width: 767px) {}
/* Anything smaller than standard 960 */
@media only screen and (max-width: 959px) {
h1 {
font-size: 48px;
}
h2 {
font-size: 16px;
float: none;
line-height: 150%;
margin-top: -10px;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 14px;
}
.source p {
font-size: 16px;
}
}
/* iPad Portrait Only */
@media only screen and (min-width: 768px) and (max-width: 991px) and (max-device-width: 1000px) {}
/* Mobile Only */
@media only screen and (max-width: 767px) and (max-device-width: 1000px) {}
/* Mobile Landscape Only */
@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {}
/* Fonts --------------------------------------------- */
@font-face {
font-family: 'ExoBold';
src: url('fonts/exo-bold-webfont.eot');
src: url('fonts/exo-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/exo-bold-webfont.woff') format('woff'),
url('fonts/exo-bold-webfont.ttf') format('truetype'),
url('fonts/exo-bold-webfont.svg#ExoBold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'ExoBlack';
src: url('fonts/exo-black-webfont.eot');
src: url('fonts/exo-black-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/exo-black-webfont.woff') format('woff'),
url('fonts/exo-black-webfont.ttf') format('truetype'),
url('fonts/exo-black-webfont.svg#ExoBlack') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'ExoRegular';
src: url('fonts/exo-regular-webfont.eot');
src: url('fonts/exo-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/exo-regular-webfont.woff') format('woff'),
url('fonts/exo-regular-webfont.ttf') format('truetype'),
url('fonts/exo-regular-webfont.svg#ExoRegular') format('svg');
font-weight: normal;
font-style: normal;
}
|