-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhomepage.css
93 lines (80 loc) · 1.61 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
html {
margin: 0 auto;
max-width: 100%;
}
body {
background: url(assets/bg2.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#map {
height: 400px;
width: 500px;
}
.logo {
position: relative;
top: -15px;
left: -3px;
width: 57.5px;
height: 50px;
}
h1 {
font-size: 60px;
font-weight: bold;
color: white;
}
h4 {
font-size: 20px;
color: white;
}
h6 {
font-size: 20px;
color: white;
font-weight: bold;
}
.sb-page-header {
margin-bottom: 40px;
padding: 50px 15px;
position: relative;
background: -webkit-linear-gradient(top, rgba(0,160,62,0), rgba(0,160,62,1)); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(top, rgba(0,160,62,0), rgba(0,160,62,1)); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(top, rgba(0,160,62,0), rgba(0,160,62,1)); /* For Firefox 3.6 to 15 */
background: linear-gradient(to top, rgba(0,160,62,0), rgba(0,160,62,1)); /* Standard syntax (must be last) */
width: 100%;
}
.img-container {
width: 200px; /* whatever set width */
display: inline-block; /* or you could float them */
overflow: hidden;
}
.img-container img {
width: 100%;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.right {
float: right;
}
.left {
float: left;
}
.signUpForm {
text-align: center;
font-weight: bold;
}
.footer {
position: absolute;
bottom: 0px;
background-color: rgb(40,117,79);
height: 60px;
width: 100%;
}