-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
286 lines (259 loc) · 10.6 KB
/
index.html
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
<html>
<head>
<base href="." />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SharkyDoesStuff</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-color: #0a0a1a;
color: #8ee3ff;
font-family: 'JetBrains Mono', monospace;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
h1 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 2rem;
border-bottom: 2px solid #8ee3ff;
padding-bottom: 1rem;
}
.shark-logo {
width: 100px;
height: 100px;
margin: 0 auto;
display: block;
}
.content, .socials, .projects {
background-color: rgba(14, 14, 35, 0.5);
padding: 2rem;
border-radius: 10px;
backdrop-filter: blur(5px);
margin-bottom: 2rem;
}
p {
margin-bottom: 1.5rem;
}
.wave {
animation: wave 3s ease-in-out infinite;
transform-origin: center;
}
.socials h2, .projects h2 {
margin-top: 0;
border-bottom: 1px solid #8ee3ff;
padding-bottom: 0.5rem;
}
.social-links {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.social-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: #8ee3ff;
text-decoration: none;
padding: 0.5rem 1rem;
border: 1px solid #8ee3ff;
border-radius: 5px;
transition: all 0.3s ease;
}
.social-link:hover {
background-color: #8ee3ff;
color: #0a0a1a;
}
.project-item {
margin-bottom: 1.5rem;
cursor: pointer;
}
.project-name {
color: #8ee3ff;
font-weight: bold;
text-decoration: underline;
cursor: pointer;
display: flex;
align-items: center;
}
.project-dead {
color: #ff4444;
}
.project-dead::after {
content: "✖";
margin-left: 10px;
color: #ff4444;
}
.project-description {
display: none;
padding: 1rem;
margin-top: 0.5rem;
background-color: rgba(14, 14, 35, 0.8);
border-radius: 5px;
}
@keyframes wave {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
/* From Uiverse.io by cssbuttons-io */
button {
font-size: 17px;
font-family: inherit;
font-weight: 700;
padding: 4px;
border-radius: 20px;
cursor: pointer;
border: none;
color: black;
box-shadow:
rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
background: linear-gradient(
0deg,
rgba(255, 213, 0, 1) 0%,
rgba(255, 213, 0, 1) 47%,
rgba(0, 91, 187, 1) 47%,
rgba(0, 91, 187, 1) 100%
);
transition: all 0.1s ease-in-out;
position: fixed;
top: 10px;
right: 10px;
z-index: 1000;
}
button:active {
transform: translateY(3px);
box-shadow:
rgba(0, 0, 0, 0.1) 0px 14px 25px -5px,
rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
button .button-content {
display: flex;
align-items: center;
background: white;
padding: 0.7em 1.5em;
padding-left: 1.2em;
border-radius: 16px;
}
button svg {
width: 20px;
height: 20px;
margin-right: 6px;
color: #ff0000;
transition: transform 0.3s;
}
button:hover svg {
transform: scale(1.2);
}
</style>
</head>
<body>
<button id="ukraine-button">
<span class="button-content">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="none" d="M0 0H24V24H0z"></path>
<path
fill="currentColor"
d="M12.001 4.529c2.349-2.109 5.979-2.039 8.242.228 2.262 2.268 2.34 5.88.236 8.236l-8.48 8.492-8.478-8.492c-2.104-2.356-2.025-5.974.236-8.236 2.265-2.264 5.888-2.34 8.244-.228z"
></path>
</svg>
Ukraine
</span>
</button>
<script>
// Add click event listener to the button
document.getElementById('ukraine-button').addEventListener('click', function() {
// Open the link in a new tab
window.open('https://savelife.in.ua/en/', '_blank');
});
</script>
<div class="container">
<svg class="shark-logo wave" viewBox="0 0 100 100">
<path fill="#8ee3ff" d="M50,20 C60,20 70,25 80,40 C90,55 90,70 80,80 C70,90 60,90 50,90 C40,90 30,90 20,80 C10,70 10,55 20,40 C30,25 40,20 50,20 Z"/>
<circle cx="35" cy="45" r="3" fill="#0a0a1a"/>
</svg>
<h1>sharkydoesstuff</h1>
<div class="content">
<p>Welcome! I am sharkydoesstuff!</p>
<p>I don't really know what to say here</p>
<p>Useless but true fact: This website's font is JetBrains Mono</p>
<p>Useless but false fact: This is a useless but true fact!</p>
</div>
<div class="projects">
<h2>My Projects</h2>
<div class="project-item">
<div class="project-name">r0bloxsh4rkyt</div>
</div>
<div class="project-item">
<div class="project-name">Pee World</div>
<div class="project-description">
Pee World is a Roblox game that I made in 2021 and I created it as a joke, little did I know 2 yrs later, in 2023, it would have over 3K visits, so I started updating it and here I am now!
</div>
</div>
<div class="project-item">
<div class="project-name project-dead">Low Poly Platformer</div>
</div>
<div class="project-item">
<div class="project-name project-dead">Old Roblox Run</div>
</div>
<div class="project-item">
<div class="project-name project-dead">Can you plz donate</div>
</div>
</div>
<div class="socials">
<h2>Find me online</h2>
<div class="social-links">
<a href="https://x.com/shrkcreation" class="social-link" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
Twitter
</a>
<a href="https://www.reddit.com/user/TheGreatestKon/" class="social-link" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z"/>
</svg>
Reddit
</a>
<a href="https://archive.org/details/@tgkisapro" class="social-link" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 4.8c1.325 0 2.4 1.075 2.4 2.4S13.325 9.6 12 9.6 9.6 8.525 9.6 7.2 10.675 4.8 12 4.8zM6 18v-1.2c0-1.325 2.675-2.4 6-2.4s6 1.075 6 2.4V18H6z"/>
</svg>
Archive.org
</a>
<a href="https://bsky.app/profile/sharkydoesstuff.bsky.social" class="social-link" target="_blank">
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2L1 12l11 10 11-10L12 2zm0 15.5L5 11l7-6.5 7 6.5-7 6.5z"/>
</svg>
Bluesky
</a>
</div>
</div>
</div>
<script>
document.querySelectorAll('.project-name').forEach(project => {
project.addEventListener('click', () => {
const description = project.nextElementSibling;
if (description) {
const isDisplayed = description.style.display === 'block';
description.style.display = isDisplayed ? 'none' : 'block';
}
});
});
</script>
</body>
</html>
<div style="text-align: center; margin-top: 2rem;">
<a href="https://sharkgithubz.github.io/my-website-mirror/" target="_blank" style="color: #8ee3ff; text-decoration: none; font-weight: bold; font-size: 1rem; border: 1px solid #8ee3ff; padding: 0.5rem 1rem; border-radius: 5px; display: inline-block; transition: all 0.3s ease;">
View Mirror of This Website
</a>
</div>