-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
117 lines (97 loc) · 1.51 KB
/
homepage.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
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
html {
background: url("WFF_Homepage_bg_image.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h1, h2, p {
margin: 0px;
}
body {
font-family: 'Open Sans', sans-serif;
color: white;
text-align: center;
}
h1, h2 {
font-family: Lato, sans-serif;
font-weight: 300;
}
h1 {
font-size: 70px;
font-weight: 400;
margin-bottom: 30px;
}
h2 {
font-size: 40px;
font-weight: 300;
}
p {
font-size: 18px;
line-height: 28px;
}
.container {
max-width: 960px;
margin: auto;
}
a {
color: white;
}
a:hover {
color: lightgrey;
}
input {
border: none;
height: 40px;
margin: 10px;
color: black;
}
.email-input {
width: 230px;
padding-left: 18px;
margin-right: 5px;
font-size: 14px;
}
.button {
background-color: #ffd200;
width: 80px;
font-weight: 600;
font-size: 14px;
}
.button:hover {
background-color: #9E8100;
color: white;
}
.logo {
text-align: left;
margin-bottom: 100px;
margin-top: 20px;
}
form {
margin-top: 20px;
}
.message {
font-weight: bold;
}
/*placeholder support*/
input:-moz-placeholder {
color: black;
font-size: 14px;
}
input::-moz-placeholder {
color: black;
font-size: 14px;
}
input:-ms-input-placeholder {
color: black;
font-size: 14px;
}
input::-webkit-input-placeholder {
color: black;
font-size: 14px;
}