forked from nealrs/sj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
164 lines (135 loc) · 2.26 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*DERP IT ALL STARTS HERE*/
.wrapper {
max-width: 1200px;
margin: 0 auto;
}
p {
margin-top: 0;
font-family: 'Roboto', sans-serif;
font-size: 1.125em;
line-height: 1.4;
color:#663339;
padding: 0 1em;
}
h4 {
color: #e86b26;
font-family: 'Arvo', serif;
font-size: 1.4em;
line-height: 1.25;
text-transform: uppercase;
padding: 0 1em;
margin: 0 0 0.5em 0;
}
/* ---------------------
HEADER
--------------------- */
.header {
background: url('trees2.png') repeat-x bottom #ff782e;
position: relative;
}
.topLogo {
text-align: center;
padding: 1.5em 1em 7em 1em;
}
.topLogo img {
max-width: 447px;
}
.trees-top {
background: url('trees1.png') repeat-x bottom center;
height: 84px;
width: 100%;
position: absolute;
z-index: 2;
bottom: 0;
}
.tent {
position: absolute;
z-index: 3;
width: 139px;
height: 138px;
left:0;
right:0;
bottom: -35px;
margin: 0 auto;
}
.introCopy {
background-color: #663339;
padding: 3.5em 0 1em 0;
text-align: center;
}
.introCopy p {
color: #f6f2de;
}
.introCopy strong {
color: #ff782e;
}
/* ---------------------
SIGN UP FORM
--------------------- */
.signup {
text-align:center;
padding:2em 1em;
background: #ff782e;
}
.signup h4 {
color: #f6f2de;
}
input {
padding: 0.75em 1em;
outline: 0;
font: normal 1em 'Roboto' sans-serif;
text-align: center;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
input.email {
background: #f6f2de;
color: #663339;
border: solid 2px #e86b26;
width: 40%;
margin-bottom: 0.75em;
}
/* mobile */
@media screen and (max-width: 48em) {
input.email {
width: 100%;
}
}
input.email:hover,
input.email:focus {
border-color: #663339;
}
.signupButton{
background-color: #663339;
color: #f6f2de;
width: auto;
border: none;
border-radius: 0.4em;
padding: ;
}
.signupButton:hover,
.signupButton:focus{
background-color: #4f282c;
}
/* ---------------------
HACKATHONS
--------------------- */
#hackathons{
background-color: #f6f2de;
text-align: center;
padding: 2em 0 1em 0;
}
#hackathons p {
text-align: left;
}
#hackathons img {
margin-bottom: 1em;
}
/* ---------------------
FOOTER
--------------------- */
.footrow{
padding: 2em 0;
text-align: center;
background: #663339;
}