-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLandingPage.css
139 lines (122 loc) · 2.51 KB
/
LandingPage.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
html,
body {
width: 100%;
height: auto;
margin: 0;
padding: 0;
font-family: "Open Sans", sans-serif;
}
.navigation {
padding-top: 30px;
padding-bottom: 30px;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.navbar-right {
float: right;
padding-right: 20%;
}
.navbar-right a {
text-decoration: none;
padding: 30px;
color: #fff;
font-family: Arial;
font-weight: 500;
}
.navbar-right a:hover {
text-decoration: underline;
}
.navbar-logo {
padding-top: 20%;
padding-left: 15%;
font-family: Arial;
font-size: 30px;
font-weight: bold;
text-decoration: none;
color: #fff;
}
.block {
width: 100%;
height: 760px;
background: linear-gradient(150deg, #8B5CF6 18%, #c44a97 60%, #fd3838 80%);
/* transform: skewY(-12deg); */
transform-origin: 0;
position: absolute;
top: 0;
}
.text {
position: relative;
height: 860px;
display: flex;
margin: -60px 0 0 380px;
flex-direction: column;
justify-content: center;
color: #fff;
max-width: 1024px;
}
.text h1 {
font-size: 40px;
opacity: 0.0;
animation: fadein 1s;
animation-delay: 0.2s;
animation-fill-mode: forwards;
}
.text p {
color: #d9fcff;
font-size: 20px;
max-width: 50%;
font-size: 17px;
line-height: 28px;
opacity: 0;
animation: fadein 1s;
animation-delay: 0.8s;
animation-fill-mode: forwards;
}
.button-area {
position: relative;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
max-width: 320px;
}
.button-area a {
background: #00000070;
border-radius: 10px;
padding: 1em 1.6em;
font-size: 0.9em;
margin: 4em 1em 0 0;
color: #fff;
text-decoration: none;
flex-grow: 1;
text-align: center;
text-transform: uppercase;
font-weight: bold;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.footer .box-container {
padding: auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
gap: 2rem;
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes up {
0% {
transform: translateY(100px) rotate(-12deg);
opacity: 0;
}
100% {
transform: translateY(0) rotate(-12deg);
opacity: 1;
}
}