forked from BulmaTemplates/bulma-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello-parallax.css
102 lines (85 loc) · 2.55 KB
/
hello-parallax.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
:root {
::-webkit-scrollbar{height:10px;width:10px}::-webkit-scrollbar-track{background:#efefef;border-radius:6px}::-webkit-scrollbar-thumb{background:#d5d5d5;border-radius:6px}::-webkit-scrollbar-thumb:hover{background:#c4c4c4}
}
.va {
display: flex;
align-items: center;
}
.hero,
.cta {
background: url(data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cfilter%20id%3D%22noise%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.4296875%200%22%20%2F%3E%3C%2Ffilter%3E%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E), linear-gradient(52deg, #42475C 0%, #20222E 71%);
}
.cta {
height: 500px;
border-top: 10px solid turquoise;
}
footer {
color: white;
background: rgb(14, 14, 14) !important;
}
footer strong {
color: turquoise;
}
footer a {
color: turquoise;
}
.title {
color: white;
font-weight: 800;
font-size: 4rem;
font-family: 'Nunito Sans', sans-serif;
text-shadow: 1px 1px 1px #000, 3px 3px 5px rgb(0, 0, 3);
}
.subtitle {
color: white;
font-size: 1.2rem;
text-shadow: 1px 1px 1px #000, 3px 3px 5px rgb(0, 0, 3);
}
hr.content-divider {
max-width: 75px;
height: 5px;
}
#parallax-1 {
background: url(https://source.unsplash.com/featured/?nature);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-top: 10px solid coral;
}
#parallax-1 hr {
background: coral;
}
#parallax-2 {
background: url(https://source.unsplash.com/featured/?computers);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-top: 10px solid yellow;
}
#parallax-2 hr {
background: yellow;
}
#parallax-3 {
background: url(https://source.unsplash.com/featured/?city);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-top: 10px solid hotpink;
}
#parallax-3 hr {
background: hotpink;
}
.label {
color: white;
}
input {
background: transparent !important;
border: 1px solid turquoise !important;
color: white !important;
}
input::placeholder {
color: white !important;
}