-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanding_Page.css
More file actions
185 lines (153 loc) · 2.89 KB
/
Landing_Page.css
File metadata and controls
185 lines (153 loc) · 2.89 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
* {
margin: 0;
font-family: "Poppins", sans-serif;
box-sizing: border-box;
}
.hero-section {
height: 100vh;
padding-top: 15rem;
background-color: transparent;
z-index: -1;
}
.hero-section .flex-hero {
flex-direction: column;
gap: 30px;
text-align:center;
}
.hero-section .flex-hero h1 {
font-size: 65px;
font-weight: 900;
}
.text-gradient {
background: linear-gradient(45deg,#2190FF 2.34%,#b673f8 100.78%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-section h4 {
font-size: 22px;
font-weight: 300;
text-align: center;
padding: 12px 14rem;
color:#969BA5;
}
.hero-section .button {
padding: 0.7rem 2rem;
border-radius: 25px;
background-color: #2190FF;
color: #fff;
border: 1px solid transparent;
width: 15%;
margin-top:15px;
}
.hero-section div:nth-child(2) {
margin-top: 4rem;
}
.hero-section .image {
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0px;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #333;
}
h1,
h2 {
line-height: 1.3;
margin: 15px 0;
}
button {
transition: all 0.5s ease-in-out;
font-size: 1em;
padding: 1em;
width: 100%;
border-radius: 5px;
margin-top: 10px;
}
.button:hover {
transform: scale(0.98);
}
@media screen and (max-width:980px) {
.hero-section h1 {
text-align: center;
}
.hero-section {
padding-top: 12rem;
}
.hero-section h4 {
font-size: 21px;
text-align: center;
padding: 0px 4rem;
}
.image {
width: 500px;
}
.hero-section .button{
margin-top:15px;
width: 45%;
}
}
@media screen and (max-width:400px) {
.hero-section h1 {
font-size: 35px;
}
.hero-section {
padding-top: 10rem;
}
.hero-section h4 {
font-size: 16px;
padding: 0px 2rem;
}
}
button,
a,
li {
cursor: pointer;
}
/* Blob */
/* Blobs */
.flex-hero .blob-cont {
justify-content: center;
align-items: center;
position: static;
margin: 10px;
}
.blob {
border-radius: 100px;
filter: blur(60px);
}
.blue {
background-color: #2937a392;
position: absolute;
top:0;
left: 0;
right: 55%;
bottom: 25%;
margin: auto;
height: 150px;
width: 200px;
animation: blobani 8s infinite ease;
}
.blue1 {
background-color: #2937a392;
position: absolute;
top:0;
left: 0;
right: -55%;
bottom: -25%;
margin: auto;
height: 150px;
width: 200px;
animation: blobani 8s infinite ease;
}
@keyframes blobani {
0% {top: 0; left: 0; transform: scale(1);}
30% {top: 0; left: 0; transform: scale(1.2);}
60% {top: 0; left: 0; transform: scale(1.3);}
100% {top: 0; left: 0; transform: scale(1);}
}