-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (118 loc) · 2.21 KB
/
style.css
File metadata and controls
137 lines (118 loc) · 2.21 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body {
font-family: 'Lora', 'Times New Roman', serif;
font-size: 20px;
color: #404040;
}
p {
line-height: 1.5;
margin: 30px 0;
}
p a {
text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 800;
}
.page-heading {
-ms-transform: rotate(2deg); /* IE 9 */
-webkit-transform: rotate(2deg); /* Chrome, Safari, Opera */
transform: rotate(2deg);
}
.subheading {
-ms-transform: rotate(-4deg); /* IE 9 */
-webkit-transform: rotate(-4deg); /* Chrome, Safari, Opera */
transform: rotate(-4deg);
}
.btn {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a {
color: #404040;
}
a:hover,
a:focus {
color: #0085a1;
}
a img:hover,
a img:focus {
cursor: zoom-in;
}
hr {
width: 100%;
margin: 30px auto;
border-width: 2px;
border-color:#D4D4D4;
}
hr.small {
max-width: 100px;
margin: 15px auto;
border-width: 4px;
border-color: white;
}
main {
margin: 30px 0;
padding: 20px;
}
footer {
height: 200px;
background-color: #2e3e1e;
}
.page-heading h1 {
display: inline;
background-color: #2e3e1e;
padding: 0 20px 10px 20px;
}
.page-heading .subheading {
display: inline-block !important;
background-color: #3b4d28;
padding: 10px 20px;
}
/* ----- Header Image ----- */
.intro-header {
background-color: #808080;
background: no-repeat 50% 50%;
background-attachment: scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
min-height: 180px;
}
.intro-header .page-heading {
color: white;
}
@media only screen and (min-width: 768px) {
main {
margin: 120px 0;
padding: 20px;
}
.intro-header .page-heading {
padding: 60px 0 150px 0;
}
}
.intro-header .page-heading {
text-align: center;
}
.intro-header .page-heading h1 {
margin-top: 0;
font-size: 50px;
}
.intro-header .page-heading .subheading {
font-size: 24px;
line-height: 1.1;
display: block;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 300;
margin: 10px 0 0;
}
@media only screen and (min-width: 768px) {
.intro-header .page-heading h1 {
font-size: 80px;
}
}