-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
254 lines (215 loc) · 4.38 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
.nav_link {
position: relative;
color: #e0e0e0; /* Light gray text */
text-decoration: none;
border: 2px solid transparent; /* Initial transparent border */
padding: 8px 14px;
border-radius: 4px;
transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
main {
background: #1a1a1a; /* Dark gray/black background */
color: #e0e0e0; /* Light gray text for readability */
}
.container {
max-width: 1300px;
width: 100%;
margin: 0 auto;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 60px;
background-color: #1a1a1a; /* Dark background */
}
.nav_logo a {
color: #bb86fc; /* Light purple */
text-decoration: none;
font-weight: 600;
/* margin-top: 10px; */
}
.menu_items {
display: flex;
list-style: none;
gap: 20px;
}
a {
color: #e0e0e0; /* Light gray text */
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #bb86fc; /* Light purple on hover */
}
.login_btn {
margin-left: auto; /* Push it to the extreme right */
background-color: #bb86fc; /* Purple background */
color: #1a1a1a; /* Dark text */
padding: 10px 14px;
border: 2px solid #bb86fc;
border-radius: 0; /* Square borders */
font-weight: 600;
transition: all 0.3s ease;
}
.login_btn:hover {
background-color: transparent;
color: #bb86fc; /* Purple text */
border-color: #bb86fc; /* Purple border */
transform: scale(1.05);
}
/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
width: 100%;
background: url(images/bg-dot.png), url(images/bg-dot.png), url(images/bg-round.png), url(images/bg-tree.png);
background-position: 10px 10px, bottom 215px right 10px, left 55% top -1%, left 45% bottom -1px;
background-repeat: no-repeat;
background-color: #1a1a1a; /* Dark gray background */
}
.curveImg {
position: absolute;
bottom: 0;
width: 100%;
pointer-events: none;
}
.hero .row {
display: flex;
align-items: center;
min-height: 100vh;
height: 100%;
width: 100%;
padding: 0 60px;
gap: 30px;
justify-content: space-between;
}
.hero .row h2,
.hero .row p {
color: #e0e0e0; /* Light gray text */
}
.hero .row h2 {
font-size: 36px;
margin-bottom: 16px;
}
.hero .column {
width: 50%;
}
.buttons {
display: flex;
margin-top: 25px;
gap: 10px;
}
.btn {
padding: 14px 26px;
background: linear-gradient(45deg, #4b0082, #8b00ff); /* Purple gradient */
color: #1a1a1a; /* Dark background for text */
border-radius: 50px;
border: none;
cursor: pointer;
transition: all 0.3s ease;
}
.btn:last-child {
border: 2px solid #bb86fc; /* Light purple border */
background: transparent;
color: #bb86fc; /* Purple text */
}
.btn:hover {
background: linear-gradient(45deg, #8b00ff, #4b0082); /* Reversed gradient on hover */
color: #1a1a1a;
transform: scale(1.05); /* Slightly increase size */
}
.hero_img {
width: 100%;
z-index: 10;
position: relative;
}
/* Social Media Icons */
.social-icon {
color: #bb86fc; /* Light purple */
border: 1px solid #bb86fc;
transition: all 0.3s ease;
}
.social-icon:hover {
color: #d0a1ff; /* Lighter purple */
border-color: #d0a1ff;
}
/* Menu Toggle for Mobile */
#menu_toggle {
display: none;
}
@media (width < 860px) {
#menu_toggle {
display: block;
}
.nav {
padding: 0 20px;
background-color: #1a1a1a;
}
.menu_items {
position: fixed;
top: 0;
width: 260px;
background-color: #1a1a1a;
height: 100%;
left: -100%;
padding: 50px 30px 30px;
flex-direction: column;
transition: all 0.5s ease;
}
.showMenu .menu_items {
left: 0;
}
a {
color: #e0e0e0;
}
#menu_toggle {
width: 20px;
cursor: pointer;
}
.menu_items #menu_toggle {
position: absolute;
top: 20px;
right: 20px;
}
.hero {
padding-top: 130px;
}
.hero .row {
flex-direction: column;
padding: 0 20px;
justify-content: center;
}
.hero .row .column {
width: 100%;
}
}
@media (width < 600px) {
.hero {
padding-top: 80px;
}
.hero .row h2 {
font-size: 26px;
}
.buttons {
justify-content: center;
}
.btn {
padding: 10px 16px;
}
}