-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
354 lines (295 loc) · 8.8 KB
/
styles.css
File metadata and controls
354 lines (295 loc) · 8.8 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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
body {
background-color: rgb(146, 221, 246);
padding-top: 100px;
justify-content: space-between; /* Distribute content to the start and end */
align-items: center; /* Vertically center the content */
height: 100vh;
margin: 0;
}
/* Clear default margin and padding for body and p */
body, p {
margin: 0;
padding: 0;
}
.two-column-container {
padding-top: 100px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.glossy-text {
font-size: 42px;
font-family: 'Courier New', monospace;
color: #c88d8d; /* Rose gold text color */
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
background: linear-gradient(45deg, #ffcccc, #ffc2c2, #ffc2c2, #ffcccc); /* Rose gold gradient background */
background-size: 400% 400%;
text-align: left; /* Align the text to the left */
padding-left: 20px; /* Optional padding to create some space from the left edge */
padding-right: 40px;
-webkit-background-clip: text; /* Apply background as a clip to the text */
background-clip: text;
-webkit-text-fill-color: transparent; /* Make text transparent */
animation: gradient-animation 5s ease infinite; /* Animation for glossy effect */
}
/* Animation for the glossy effect */
@keyframes gradient-animation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.centered-text {
font-size: 24px;
font-family: 'Courier New', monospace;
margin-top: 20px; /* Add margin to create space between Data Healing and Data Trauma */
white-space: normal; /* Allow text to wrap within the container */
overflow: auto; /* Add scrolling behavior to the div */
max-height: 60vh; /* Limit the height of the div and add scroll when the content overflows */
padding: 20px; /* Add padding to create space between text and background edges */
color: #b08686; /* Silver text color */
opacity: 1; /* Adjust the opacity of the text */
text-align: center;
}
.bottom-links {
font-size: 25px;
display: flex; /* Change the display to flex */
justify-content: center; /* Center the links horizontally */
margin-top: 20px; /* Add some top margin to create space between the text and links */
padding-bottom: 100px;
}
.bottom-links a {
margin-right: 40px; /* Add right margin to create space between the links */
text-decoration: none; /* Remove the default underline on anchor tags */
color: rgb(197, 106, 106);
}
/* Add space to the last link to prevent it from having unnecessary margin-right */
.bottom-links a:last-child {
margin-right: 0;
}
.center-links {
display: flex;
justify-content: center;
margin-top: 20px; /* Add some space between the content and the links */
}
.path {
font-size: 18px;
text-align: center;
font-family: 'Courier New', monospace;
color: rgba(24, 105, 52, 0.8); /* Dark green text color */
background: linear-gradient(45deg, #113726, #123428, #113726, #123428); /* Dark green gradient background */
background-size: 400% 400%;
padding-left: 20px; /* Optional padding to create some space from the left edge */
padding-right: 40px;
-webkit-background-clip: text; /* Apply background as a clip to the text */
background-clip: text;
-webkit-text-fill-color: transparent; /* Make text transparent */
animation: gradient-animation 5s ease infinite;
}
.data-trauma {
font-size: 15px;
font-family: 'Courier New', monospace;
margin-top: 20px; /* Add margin to create space between Data Healing and Data Trauma */
white-space: normal; /* Allow text to wrap within the container */
overflow: auto; /* Add scrolling behavior to the div */
max-height: 60vh; /* Limit the height of the div and add scroll when the content overflows */
padding: 20px; /* Add padding to create space between text and background edges */
color: #b08686; /* Silver text color */
opacity: 1; /* Adjust the opacity of the text */
padding-top: 20px;
max-width: 1200px;
margin: 0 auto;
text-align: center; /* Center-align the text */
}
.folders {
position: relative; /* Add this line to make .tech the positioned ancestor */
display: inline-block;
margin-right: 20px;
left: 85px;
padding-bottom: 400px;
}
/* Keep your existing styles */
.tech {
position: relative; /* Add this line to make .tech the positioned ancestor */
display: inline-block;
margin-right: 20px;
right: 120px;
}
.tech-folder {
transform: scale(0.1, 0.1);
position: absolute;
top: -440px; /* Adjust the top value as needed */
left: 0;
}
.tech-text {
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
color: white;
font-size: 12px;
position: absolute;
left: 475px;
top: 130px;
padding-bottom: 20px;
font-weight: bold;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); /* Increased shadow effect */
}
/* You can apply similar styles for other folder icons and texts */
.nature {
position: relative; /* Add this line to make .tech the positioned ancestor */
display: inline-block;
margin-right: 20px;
right: 110px;
}
.nature-folder {
transform: scale(0.1,0.1);
position: absolute;
top: -440px;
left: 110px;
}
.nature-text {
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
color: white;
font-size: 12px;
position: absolute;
font-weight: bold;
top: 130px;
left: 600px;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); /* Increased shadow effect */
}
.spirituality{
position: relative; /* Add this line to make .tech the positioned ancestor */
display: inline-block;
margin-right: 20px;
right: 120px;
}
.spirituality-folder {
transform: scale(0.1,0.1);
position: absolute;
top: -440px;
left: 250px;
}
.spirituality-text{
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
color: white;
font-size: 12px;
position: absolute;
font-weight: bold;
top: 130px;
left: 730px;
text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); /* Increased shadow effect */
}
.reparations {
position: relative; /* Add this line to make .tech the positioned ancestor */
display: inline-block;
margin-right: 20px;
right: 120px;
}
.reparations-folder {
transform: scale(0.1,0.1);
position: absolute;
top: -440px;
left: 370px;
}
.reparations-text {
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
color: white;
font-size: 12px;
position: absolute;
font-weight: bold;
top: 130px;
left: 846px;
text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4); /* Increased shadow effect */
}
.wrapper {
height: 50vh;
display: grid;
place-items: center;
}
.typing-cursor {
display: inline-block;
width: 8px;
height: 20px;
background-color: #000;
margin-left: 4px;
animation: blink 1s infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
.data-trauma-placeholder {
font-size: 18px;
font-family: 'Courier New', monospace;
white-space: normal; /* Allow text to wrap within the container */
opacity: 0; /* Initially hide the placeholder text */
max-width: 1200px;
max-height: max-content;
margin: 0 auto;
text-align: center; /* Center-align the text */
}
.container {
font-family: 'Courier New', monospace;
margin-top: 20px;
white-space: normal;
overflow: auto;
max-height: 400vh;
padding: 20px;
color: #b08686;
opacity: 1;
padding-top: 20px;
max-width: 1200px;
margin: 0 auto;
text-align: center;
height: 35vh;
}
/*
.container {
font-size: 18px;
font-family: 'Courier New', monospace;
white-space: normal;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
padding: 20px;
box-sizing: border-box;
max-width: 1200px;
text-align: cednter;
min-height: 500px;
}*/
.typed-out {
overflow: hidden;
white-space: normal;
animation: typing 1s steps(20, end) forwards;
font-size: 1.6rem;
font-size: 18px;
}
.cursor {
display: inline-block;
width: 10px; /* Adjust the width of the cursor */
height: 20px; /* Adjust the height of the cursor */
background-color: #b08686; /* Cursor color */
margin-left: 5px; /* Adjust the margin as needed */
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 0; } /* Cursor is invisible at the beginning and end */
50% { opacity: 1; } /* Cursor is visible in the middle of the animation */
}
.about {
position: absolute; /* Add this line to make .tech the positioned ancestor */
transform: scale(0.1,0.1);
top: 200px;
left: 180px;
text-align: center;
}
.about-text {
font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Arial, sans-serif;
color: white;
font-size: 120px;
font-weight: bold;
text-shadow: 40px 40px 40px rgba(0, 0, 0, 0.4); /* Increased shadow effect */
}