-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (79 loc) · 1.96 KB
/
style.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
/*
**
* Avaiable fonts:
* font-family: 'Aclonica', sans-serif;
* font-family: 'Roboto', sans-serif;
**
*/
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
font-family: "Roboto", sans-serif;
}
img {
max-width: 100%;
}
.hero {
background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8))), url("./img/hero-banner-image-1.jpg");
background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("./img/hero-banner-image-1.jpg");
background-size: cover;
background-position: center;
padding: 90px 15px;
}
.hero .hero-container {
text-align: center;
max-width: 1000px;
margin: 0 auto;
}
.hero .hero-container h1 {
color: rgba(255, 255, 255, 0.55);
font-family: "Aclonica", sans-serif;
font-size: 30px;
margin: 0;
}
@media (min-width: 768px) {
.hero .hero-container h1 {
font-size: 70px;
}
}
.hero .hero-container p {
color: #fff;
font-size: 22px;
}
.hero .hero-container a {
text-decoration: none;
background-color: #7f53ac;
background-image: linear-gradient(315deg, #7f53ac 0%, #647dee 74%);
color: #fff;
padding: 12px 30px;
display: inline-block;
text-transform: uppercase;
border-radius: 25px;
-webkit-transition: all 0.9s ease;
transition: all 0.9s ease;
}
.hero .hero-container a:hover {
background-color: #42378f;
background-image: linear-gradient(315deg, #42378f 0%, #f53844 74%);
color: #000000;
-webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9), 0 6px 20px 0 rgba(0, 0, 0, 0.9);
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.9), 0 6px 20px 0 rgba(0, 0, 0, 0.9);
}
.hero .hero-container h1 {
opacity: 0;
-webkit-filter: blur(3px);
filter: blur(3px);
-webkit-transition: all 1850ms ease-in;
transition: all 1850ms ease-in;
}
.hero .hero-container h1.loaded {
opacity: 1;
-webkit-filter: blur(0);
filter: blur(0);
}/*# sourceMappingURL=style.css.map */