-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
313 lines (268 loc) · 7.45 KB
/
style.css
File metadata and controls
313 lines (268 loc) · 7.45 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
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
@import url('https://fonts.googleapis.com/css2?family=Playwrite+SK:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+SK:wght@100..400&family=Playwrite+US+Trad:wght@100..400&display=swap');
body {
background-color: #000;
background-image: url(images/output-onlinegiftools.gif);
background-size: cover; /* Ensures the background covers the entire area */
background-position: center; /* Centers the background image */
background-repeat: repeat-y;
height: 100vh; /* Ensures the body covers the full viewport height */
color: #ffffff;
}
.bodier {
background-repeat: no-repeat;
}
@keyframes moveGradient {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.gradient-line {
position: fixed;
top: 5px; /* Distance the line from the top */
left: 0;
width: 100%;
height: 2px; /* Adjust the height of the gradient line here */
background: linear-gradient(270deg, #41295a, #2F0743, #5614B0, #DBD65C);
background-size: 1200% 1200%;
animation: moveGradient 10s ease infinite;
z-index: 9999;
}
.terminal-window {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
color: #fff;
font-family: 'Courier New', Courier, monospace;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
z-index: 9999;
}
.bottom {
position: fixed;
top: 8px;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: right;
align-items: center;
flex-direction: column;
z-index: 9999;
}
.bottom, .bottom a {
color: rgba(255, 255, 255, 0.5); /* Sets text color to white */
text-decoration: none; /* Removes underline from text */
}
.bottom:hover, .bottom a:hover {
color: rgba(255, 255, 255, 0.5); /* Keeps text color white on hover */
text-decoration: none;
}
#terminal p {
margin: 0;
}
.button-container {
display: grid;
z-index: 9999;
grid-gap: 20px; /* Space between buttons */
padding: 50px; /* Padding around the grid */
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusts number of columns based on available space */
}
.see-more-button {
display: block; /* Changed from inline-block to block */
margin: 10px auto; /* Top and bottom margins remain 10px, left and right margins set to auto */
padding: 5px 10px; /* Smaller padding */
background-color: #333; /* Dark background for visibility */
color: #fff; /* White text */
text-decoration: none; /* Remove underline from links */
font-size: 14px;
border-radius: 5px; /* Less rounded corners */
transition: background-color 0.3s; /* Smooth background color transition on hover */
width: fit-content; /* Ensures the width is just enough to fit its content */
}
@keyframes colorCycle {
0% { color: #ffadad; }
12.5% { color: #ffd6a5; }
25% { color: #fdffb6; }
37.5% { color: #caffbf; }
50% { color: #9bf6ff; }
62.5% { color: #a0c4ff; }
75% { color: #bdb2ff; }
87.5% { color: #ffc6ff; }
100% { color: #ffadad; }
}
.colored {
animation: colorCycle 20s infinite linear;
}
/* vvv This is the part for the COMPLETED text vvv */
@keyframes rainbowCycle {
0%, 100% { color: #ffadad; }
12.5% { color: #ffd6a5; }
25% { color: #fdffb6; }
37.5% { color: #caffbf; }
50% { color: #9bf6ff; }
62.5% { color: #a0c4ff; }
75% { color: #bdb2ff; }
87.5% { color: #ffc6ff; }
}
/* Apply the animation to each class */
[class^="rainbow-"] {
animation: rainbowCycle 10s infinite linear;
}
/* Initial colors for each letter */
.rainbow-0 { color: #ffadad; }
.rainbow-1 { color: #ffd6a5; }
.rainbow-2 { color: #fdffb6; }
.rainbow-3 { color: #caffbf; }
.rainbow-4 { color: #9bf6ff; }
.rainbow-5 { color: #a0c4ff; }
.rainbow-6 { color: #bdb2ff; }
.rainbow-7 { color: #ffc6ff; }
.see-more-button:hover {
background-color: #555; /* Darker background on hover */
color: #fff;
}
#particle-container {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.particle {
position: absolute;
bottom: 0;
background-color: #fff;
width: 5px;
height: 5px;
opacity: 1;
border-radius: 50%;
}
@keyframes move-up-fade {
0% {
bottom: 0;
opacity: 1;
}
100% {
bottom: 100%;
opacity: 0;
}
}
.languages {
font-family: "Playwrite US Trad", cursive
}
.greet {
font-family: "Playwrite US Trad", cursive;
}
.project-div {
width: 100%; /* Each button fills its cell */
padding: 30px 20px; /* Increase vertical padding */
border-radius: 10px; /* Adds rounded corners */
transition: transform 0.4s ease, background-color 0.4s ease; /* Smooth transition for hover effects and background color */
color: #fff;
font-size: 35px;
background-color: rgba(0,0,0,0.5); /* Ensures background is fully black */
border: none; /* Removes any default border */
display: flex; /* Makes .project-div a flex container */
justify-content: center; /* Centers children horizontally */
align-items: center; /* Centers children vertically */
text-align: center; /* Centers the text inside the .project-div */
height: 20%; /* Ensure it fills the container vertically */
}
.project-div:hover {
transform: scale(1.02); /* Slightly increase size on hover */
}
.project-description {
font-size: 18px;
font-weight: 300;
margin-top: 5px;
margin-left: 30px;
margin-right: 30px;
font-weight: 400;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
.project-button:hover {
transform: scale(1.02)
}
/* Optional: Adjust padding for smaller screens */
@media (max-width: 600px) {
.button-container {
padding: 20px;
}
}
.navbar-custom {
background-color: rgba(0,0,0,0.4); /* Custom black background for navbar */
}
.nav-link {
animation: fade-in 2s ease-out;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
h1 {
font-size: 70px;
}
.fira-code {
font-family: "Fira Code", monospace;
font-optical-sizing: auto;
font-style: normal;
}
.custom-btn {
background-color: black;
color: white;
padding: 5px 20px;
font-size: 20px; /* Adjust the size of the button text */
border: none;
cursor: pointer;
display: block;
margin: 20px auto; /* Center the button */
border-radius: 6000px; /* Rounded corners */
transition: background-color 0.5s ease; /* Fade effect for background color */
}
.custom-btn .plus {
font-size: 32px; /* Make the plus sign larger */
}
.custom-btn:hover {
background-color: #111; /* Slightly lighter black on hover */
}
.custom-btn:focus {
outline: none; /* Example: Change to a more subtle outline */
}
/* For the whole page */
body::-webkit-scrollbar {
width: 12px; /* Scrollbar width */
}
body::-webkit-scrollbar-track {
background: #f1f1f1; /* Track color */
}
body::-webkit-scrollbar-thumb {
background: black; /* Thumb color */
}
body::-webkit-scrollbar-thumb:hover {
background: #555; /* Thumb hover color */
}
.separator {
height: 2px;
width: 100%;
position: relative;
}
.separator::after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: linear-gradient(to right, transparent, #111 15%, #111 85%, transparent);
}