forked from patrickfuller/camp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (59 loc) · 1019 Bytes
/
style.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
67
68
69
70
71
72
body {
width: 100%;
height: 100%;
font-family: 'Lato', sans-serif;
font-weight: 400;
}
h1 {
margin-top: 0px;
font-weight: 700;
}
p {
font-size: 16px;
}
img {
width: 100%;
}
input,
button {
height: 35px;
width: 150px;
font-size: 16px;
}
button {
border: 0px;
padding: 8px 10px;
border-radius: 1px;
cursor: pointer;
color: #fff;
background: #bc1c42;
text-align: center;
-webkit-transition: 0.15s background ease;
-moz-transition: 0.15s background ease;
-ms-transition: 0.15s background ease;
-o-transition: 0.15s background ease;
transition: 0.15s background ease;
}
button:hover, button:active {
background: #d25;
}
.centered {
position: fixed;
margin-top: 10%;
left: 50%;
margin-left: -75px;
}
.scalable-logo {
padding-right: 0;
min-width: 50px;
}
.logo {
width: 150px;
margin-bottom: 25px;
}
.top {
margin-top: 50px;
}
#video {
margin: 25px auto;
}