-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.css
More file actions
51 lines (45 loc) · 1.05 KB
/
landing.css
File metadata and controls
51 lines (45 loc) · 1.05 KB
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
body.landing {
background-color: rgb(58,23,63);
}
.hero-content {
position: relative;
min-height: 600px;
background-image: url(../assets/images/bloc_jams_bg.jpg);
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.hero-content .hero-title {
position: absolute;
top: 40%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
text-align: center;
font-size: 4rem;
font-weight: 300;
text-transform: uppercase;
letter-spacing: 0.5rem;
text-shadow: 1px 1px 0px rgb(58,23,63);
}
.selling-points {
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.point {
position: relative;
padding: 2rem;
text-align: center;
}
.point .point-title {
font-size: 1.25rem;
}
.ion-music-note,
.ion-radio-waves,
.ion-iphone {
color: rgb(233,50,117);
font-size: 5rem;
}