-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.css
66 lines (64 loc) · 933 Bytes
/
main.css
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
body {
margin: 0;
background: #2E2E2C;
color: #f7f7f7;
}
h1, h2 {
font-weight: 200;
}
a, a:visited {
color: #fff;
}
a:hover {
color: #F3DF49;
}
#hero {
background: transparent url(hero.jpg) no-repeat scroll top center;
background-size: auto 150%;
height: 300px;
}
@media (min-width: 768px) {
#hero {
height: 600px;
}
}
#logo {
background: transparent url(logo.png) no-repeat scroll center center;
background-size: 221px auto;
height: 100%;
}
@media (min-width: 768px) {
#logo {
background-size: 443px auto;
}
}
main {
padding: 60px 0;
}
iframe {
margin: 15px 0;
pointer-events: none;
}
.text-yellow {
color: #F3DF49;
}
.hr {
text-align: center;
margin: 30px 0;
}
a.btn {
color: #fff;
}
footer {
background: #333;
padding: 60px 0;
font-size: 16px;
color: #ccc;
text-align: center;
}
footer a, footer a:visited {
color: #999;
}
footer a:hover {
color: #fff;
}