-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
369 lines (333 loc) · 13.4 KB
/
Copy pathindex.html
File metadata and controls
369 lines (333 loc) · 13.4 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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
<!DOCTYPE html>
<html lang="en">
<head>
<link href="data:image/x-icon;base64,AAABAAEAEBAQAAEABAAoAQAAFgAAACgAAAAQAAAAIAAAAAEABAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAis8AAAAAAADZ/wAA4f8AAJbgAAB+vQAAzPoAAGicAACR8gBAsv8AHOX/AACy7QAAAAAAAAAAAAAAAAAAAAAAERERGBgREREREREYGBERERERERd3d3EREREXdERERxEREXRLu7u0cRERdLZ3dmtHERdLZzMyJrURF0tjZmIiZRF0u2I6qqo1GGZmI6AAAKWYoxM6ARERBREKqqAREREQERAAARERERERERERERERERERERERERERERERERERERH+vwAA/r8AAP4HAAD4AwAA8AEAAPAAAADgAAAA4AAAAMAAAACAAAAAAHwAAMD+AADh/wAA//8AAP//AAD//wAA" rel="icon" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lardsonian</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link href="https://fonts.googleapis.com/css?family=Comfortaa:700" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<style>
/*==========⚠️==========
* for colors go to https://htmlcolorcodes.com/color-names
* for fonts go to https://fonts.google.com
* for cursors go to https://icons8.com or https://www.cursors-4u.com
============⚠️==========*/
/* this is where the colors are rooted */
:root{
--headers: whitesmoke;
--text: whitesmoke;
--names: whitesmoke;
--links: rgb(161, 29, 29);
--background_image: url('https://wallpapercave.com/wp/wp2686927.jpg');
--font-family: "Courier New", cursive;
--curve: 0px;
--borders: 2px solid rgb(61, 61, 61);
}
/* this is where the colors for specific things are located */
h3, h4, h5{color: var(--headers)!important;} /* headings*/
a{color: var(--links) !important;} /* color of links */
p, h2, .count {color: var(--text);} /* color of text */
.friends a p{color: var(--names);} /* color of names, and friends counter */
nav label{color: var(--links);} /* color of search */
.section h4 {color: var(--headers);} /* aboutme & want2meet headings */
.blurbs .heading {display:none;} /* hides the blurbs title */
.details p:last-child{color: var(--text);} /* where the last login and status appears */
/* this is where your background image ends up being styled */
body{
background-image: var(--background_image);
background-size: contain;
background-position: center;
background-color: dimgray;
}
/* this is where your name appears */
h1{
color: white;
font-family: var(--font-family);
font-size:30px !important;
font-weight: 1;
border: var(--borders);
background-color: black;
padding:5px;
text-align: center;
}
/* this is the line that appears between links in the header and footer.
you can add an emoji or symbol instead of the default line it has */
nav .links li:not(:last-child)::after,
footer .links li:not(:last-child)::after{
content: "|";
color: white;
}
nav img.logo{
filter: brightness(0) saturate(100%) invert(50%) sepia(5%) saturate(326%) hue-rotate(174deg) brightness(92%) contrast(82%) !important;
}
/* the search wrapper and button */
.search-wrapper input[type=text] {
background-color: transparent !important;
border: 2px solid var(--links) !important;
color:var(--links) !important;
border-radius: var(--curve) !important;
}
button{
border-radius: var(--curve) !important;
border: 0px solid var(--links) !important;
font-family: var(--font-family) !important;
background-color: transparent !important;
color:var(--links) !important;
}
/* the online symbol and text */
.online{
color: var(--links) !important;
text-transform: lowercase;
text-align: right;
}
.online img{
filter: brightness(0) saturate(100%) invert(50%) sepia(5%) saturate(326%) hue-rotate(174deg) brightness(92%) contrast(82%); !important;
}
/* font family for the headers, navigtion links, links, body text */
a, p, b, nav label, .section{
font-family: var(--font-family);
font-size: 12px;
font-weight: 1;
text-shadow: 0px 0px 0px black;
}
h2, h3, h4, h5{
font-family: var(--font-family);
font-size: 16px;
text-align: center;
font-weight: 1;
text-shadow: 0px 0px 0px black;
}
/* the hr code.
the hr is the horizontal line when you want to
separate important info or add a break in your paragraphs*/
hr{
height:2px;
background: gray;
border: none;
}
/* this is where you adjust the borders and background */
.blurbs, .mood, .friends, .contact, .profile .table, .blog-preview, .profile .table-section{
border-radius: var(--curve);
border: var(--borders)!important;
background-color: black!important;
}
.comment-replies{border:4px groove gray;} /* this is the border around the replies */
.comment-reply:not(:first-child){border-top: 2px solid var(--links);} /* line in between comment replies*/
/* your interest and comments table row background color */
td{
background-color: transparent!important;
}
/* the middle section of your profile background color*/
main{
background: transparent;
border-radius: var(--curve);
border: transparent;
outline: none;
}
/* the interest table */
.table-section{
border:none !important;
border-radius: var(--curve) !important;
}
/* the header section of the boxes */
.heading{
background: none !important;
}
/* this is the box that says "Edit Info" when you're logged in,
and to your friends it says "Profile Name is your friend". */
.profile-info {
background-color: black !important;
border: var(--borders) !important;
border-radius: var(--curve) !important;
}
/* adjusting images borders and adding styling if you want to */
.profile-pic{
padding: 10px;
}
/* you can add text-align:center; if you want your friends to be centered */
.friends-grid{
text-align: center;
}
/* margin and padding */
h2, h3, h4, h5, p{padding-left:5px !important;} /* this is important when you have rounded corners */
.contact .heading, .profile .table-section .heading, .blog-preview .heading, .profile .friends .heading, .mood{padding: 5px!important;text-align: center;}
.mood, .friends{margin-bottom: 10px;}
.url-info{display: none;}
.general-about .details{
background: black;
border: var(--borders);
padding-bottom: 40px;
margin-bottom: 5px;
}
.contact{
padding: 5px
}
.contact .f-col{
padding: 0px 0px 7px;
}
.f-row{
margin:0px!important;
}
/* this is the comments table scroll code.
you can delete this if you don't want a scroll box */
.comments-table {
display: block;
height: 500px!important;
overflow-y: scroll;
outline: none !important;
border-radius: 3px;
border-spacing: 6px;
border: transparent;
}
.comments-table td{
border: 2px solid gray;
}
footer{
background: black;
border: var(--borders);
padding:10px;
margin-top: 10px;
}
/* .details-table td:first-child{display:none;} this hides the movies,books,heroes titles*/
</style>
<style>
/* Scrollbar styles */
::-webkit-scrollbar {
width: 5px;
height: 12px;
}
::-webkit-scrollbar-track {
border-radius: var(--curve);
border: 1px solid black;
}
::-webkit-scrollbar-thumb {
background: gray;
border-radius: var(--curve);
}
::-webkit-scrollbar-thumb:hover {
background: black;
}
</style>
</head>
<body>
<div id="loading">
<div id="spinner"></div>
</div>
<div id="box">
<div class="box1 onlywide animated bounceOutLeft" style="animation-delay:1.7s;"></div>
<div class="box2 onlywide animated bounceOutLeft" style="animation-delay:1.8s;"></div>
<div class="box2 onlywide animated bounceOutLeft" style="animation-delay:1.9s;"></div>
<div class="box2 animated bounceOutRight" style="animation-delay:1.9s;"></div>
<div class="box2 onlywide animated bounceOutRight" style="animation-delay:1.8s;"></div>
<div class="box2 onlywide animated bounceOutRight" style="animation-delay:1.7s;"></div>
</div>
<a id="about" onclick="showabout()" class="animated fadeIn" style="animation-delay:2.2s;">about</a>
<a id="work" onclick="showwork()" class="animated fadeIn" style="animation-delay:2.2s;">work</a>
<a id="contact" onclick="showcontact()" class="animated fadeIn" style="animation-delay:2.2s;">contact</a>
<div id="middle" class="animated slideInDown" style="animation-delay:2.0s;">
<h1>Lardsonian.</h1>
<h2>Software Dev / 3D Artist </h2>
<div id="menu">
<a onclick="showabout()">about</a>
<a onclick="showwork()">projects</a>
<a onclick="showcontact()">contact</a>
</div>
<table>
<tr>
<td class="animated zoomIn" style="animation-delay:2.2s;"><a class="social" href="https://discordapp.com/users/1154190148876116029"><i class="fab fa-discord"></i></a></td>
<td class="animated zoomIn" style="animation-delay:2.4s;"><a class="social" href="https://github.com/babylard"><i class="fab fa-github"></i></a></td>
<td class="animated zoomIn" style="animation-delay:2.6s;"><a class="social" href="https://instagram.com/Lardsonian"><i class="fab fa-instagram"></i></a></td>
<td class="animated zoomIn" style="animation-delay:2.8s;"><a class="social" href="https://www.pinterest.com/babylard1/"><i class="fab fa-pinterest"></i></a></td>
</tr>
</table>
</div>
<div id="work_container" class="container">
<div onclick="closework()"><i class="fas fa-angle-right"></i></div>
<h1>projects</h1>
<section>
<h1>NetScan</h1>
<img src="https://github.com/babylard/NetScan/assets/75695872/40ad710c-4471-4910-91e3-2e29567890dc">
<p>
<b> Scanner written in Python which lists IPs, MAC Addresses, and other information of devices on a specified network. can also deauth devices on vunreble networks.</b>
</p>
<a href="https://github.com/babylard/NetScan"><button class="btn_one">Project Page</button></a>
</section>
<section>
<h1>AjcUtils</h1>
<img src="https://github.com/user-attachments/assets/eab1813b-f356-4799-9ab4-ad396a5c7b49">
<p>
<h2><b>Console App written in C# that takes advantage of some abilities in the Animal jam Classic client intended for devs, along with some other features.</b></h2>
</p>
<a href="https://github.com/babylard/AjcUtils"><button class="btn_one">Project Page</button></a>
</section>
<section>
<h1>IHM (I Hate Microsoft)</h1>
<p>
<h2><b>IHM is a Win10 Debloater. Still a WIP.</b></h2>
</p>
<a href="https://github.com/babylard/IHM"><button class="btn_one">Project Page</button></a>
</section>
</div>
<div id="about_container" class="container">
<div onclick="closeabout()"><i class="fas fa-angle-left"></i></div>
<h1>about.</h1>
<section>
<h2>About me</h2>
<p>
Hello, I'm Lardsonian. I'm a C# Dev. I also do 3D as a hobby, mostly Archviz.
</p>
<p>
I keep my renders on my Instagram account, and most of my Software on Github.
</p>
</section>
<section>
<h1>Languages</h1>
<p>
- C#
</p>
<p>
- Python
</p>
<p>
- Dabbled in Rust and C++
</p>
<section>
<h1>Operating Systems</h1>
<p>
- Kubuntu
</p>
<p>
- Endeavor
</p>
<p>
- Windows 11 🤢
</p>
</section>
</div>
<div id="contact_container" class="container">
<div onclick="closecontact()"><i class="fas fa-angle-down"></i></div>
<h1>contact.</h1>
<section>
<h2>contact me</h2>
<p>
<form action="https://formspree.io/f/xdoqqrqr" method="POST">
<label><input type="text" placeholder="name" name="Name:" required></label>
<label><input type="email" placeholder="email" name="Email:"required><br></label>
<label><textarea placeholder="your message" name="Message:" required rows="5"></textarea><br></label>
<button class="btn_one" type="submit">send</button>
</form>
</p>
</section>
</div>
<div id="footer">
</div>
<script src="index.js" type="text/javascript"></script>
<script src="particles.js"></script>
<script src="app.js"></script>
</body>
</html>