This repository was archived by the owner on Mar 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathcla.css
More file actions
117 lines (102 loc) · 2.37 KB
/
cla.css
File metadata and controls
117 lines (102 loc) · 2.37 KB
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
@font-face
{
font-family: "LeagueGothic";
src: url('../fonts/league_gothic/League_Gothic-webfont.ttf'),
url('../fonts/league_gothic/League_Gothic-webfont.svg'),
url('../fonts/league_gothic/League_Gothic-webfont.woff'),
url('../fonts/league_gothic/League_Gothic-webfont.eot');
/* "League Gothic" Copyright (c) 2010, Caroline Hadilaksono & Micha Rich */
/* http://theleagueofmoveabletype.com */
}
@font-face
{
font-family: "Source";
src: url('../fonts/sourcesans/sourcesans-regular-webfont.ttf'),
url('../fonts/sourcesans/sourcesans-regular-webfont.svg'),
url('../fonts/sourcesans/sourcesans-regular-webfont.woff'),
url('../fonts/sourcesans/sourcesans-regualr-webfont.eot');
/* "Source Sans" Copyright (c) 2012, Adobe Systems Inc */
/* http://sourceforge.net/projects/sourcesans.adobe/ */
}
@font-face
{
font-family: "Source Semibold";
src: url('../fonts/sourcesans/sourcesans-semibold-webfont.ttf'),
url('../fonts/sourcesans/sourcesans-semibold-webfont.svg'),
url('../fonts/sourcesans/sourcesans-semibold-webfont.woff'),
url('../fonts/sourcesans/sourcesans-semibold-webfont.eot');
/* "Source Sans Semibold" Copyright (c) 2012, Adobe Systems Inc */
/* http://sourceforge.net/projects/sourcesans.adobe/ */
}
html
{
background: #eee;
}
body
{
margin: 0 auto;
padding: 2em;
max-width:800px;
-webkit-box-shadow: 0 0 12px rgba(0,0,0,0.4);
-moz-box-shadow: 0 0 12px rgba(0,0,0,0.4);
box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
p
{
margin: 1.2em 0;
}
p, li
{
font-family: "Source", Verdana;
font-size: 1.1em;
line-height: 1.6em;
}
.well
{
font-family: "Source Semibold", Verdana;
font-size: 1.3em;
padding: 2em;
}
h1
{
font-family: "LeagueGothic", Verdana;
font-size: 5em;
line-height: 1.1em
}
.icon-white {
background-image: url("../img/glyphicons-halflings-white.png");
}
@media only screen
and (max-width: 320px)
{
h1
{
font-size: 2em;
}
.well
{
font-size: 1em;
padding: 1em;
}
body
{
margin: 0;
}
}
@media only screen
and (min-width: 320px) and (max-width: 600px)
{
h1
{
font-size: 3em;
}
body
{
margin: 0;
}
.well
{
font-size: 1em;
padding: 1em;
}
}