first commit

This commit is contained in:
Clay 2023-11-13 22:02:44 -05:00
commit 2c8402924d
8 changed files with 1901 additions and 0 deletions

BIN
img/404.jpg Normal file

Binary file not shown.

After

(image error) Size: 26 KiB

BIN
img/CTG.png Normal file

Binary file not shown.

After

(image error) Size: 11 KiB

BIN
img/bitcoinQR.png Normal file

Binary file not shown.

After

(image error) Size: 40 KiB

BIN
img/claythegamer.jpg Normal file

Binary file not shown.

After

(image error) Size: 23 KiB

BIN
img/favicon.ico Normal file

Binary file not shown.

After

Width: 48px  |  Height: 48px  |  Size: 15 KiB

204
index.html Normal file
View file

@ -0,0 +1,204 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="robots" content="noindex,nofollow" /> <title>ClayTheGamer</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/CTG.png" type="image/x-icon" />
<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.claygarth.com/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '5']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
</head>
<body>
<div class="container">
<div class="content">
<div id="particles-js"></div>
<img id="userPhoto" src="img/CTG.png" alt="User Photo">
<h1><a href="https://claythegamer.tk/" id="userName" rel="noopener">Clay The Gamer</a></h1>
<div id="links">
<a class="link" href="#" title="Clay#12324" target="_blank">BattleNet</a>
<a class="link bitcoin" href="bitcoin://bc1qk32vvmcrd5ptqa7tp3km8my20ceh9sxkxm53vh" target="_blank">Bitcoin</a>
<a class="link" href="https://claytonia.net/" target="_blank">Claytonia</a>
<a class="link" href="https://discord.gg/WUMAAMK" title="Clarth" target="_blank">Discord</a>
<a class="link" href="https://minecraft-statistic.net/en/player/ClayGarth.html" target="_blank">Minecraft</a>
<a class="link" href="https://steamcommunity.com/id/Clarth3/" target="_blank">Steam Profile</a>
<a class="link" href="https://s.team/chat/MUJ866L1" target="_blank">Steam Chat</a>
<a class="link" href="https://claytonia.net/teamspeak" target="_blank">Teamspeak</a>
<a class="link" href="ts3server://voice.claytonia.net" target="_blank"><img src="https://userb.tsviewer.com/3_t-i/FA%2BsSd0OCSsRYCZHuQu6cOGT8KA%3D.png"></a>
<a class="link" href="https://www.twitch.tv/claygarth" target="_blank">Twitch</a>
<a class="link" href="http://live.xbox.com/Profile?Gamertag=clay8977" target="_blank">Xbox</a>
<a class="link" href="https://www.youtube.com/channel/UCpPx2QG9UIvwrmzQmkflfcw" target="_blank">YouTube</a>
<a class="link" href="#" target="_blank">#</a>
</div>
<footer>
Do you know where your towel is?
<br>
<br>
<br>
<img src="https://wiki.claygarth.com/lib/exe/fetch.php?media=wiki:octoline.png">
</footer>
</div>
</div>
<!-- <script src=" https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>-->
<script src="particles.js"></script>
<script>
particlesJS('particles-js', {
particles: {
number: {
value: 80,
density: {
enable: true,
value_area: 800
}
},
color: {
value: '#142e7f'
},
shape: {
type: 'circle',
stroke: {
width: 0,
color: '#000000'
},
polygon: {
nb_sides: 5
},
image: {
src: 'path/to/your/image.png',
width: 100,
height: 100
}
},
opacity: {
value: 0.5,
random: false,
anim: {
enable: false,
speed: 1,
opacity_min: 0.1,
sync: false
}
},
size: {
value: 3,
random: true,
anim: {
enable: false,
speed: 40,
size_min: 0.1,
sync: false
}
},
line_linked: {
enable: true,
distance: 150,
color: '#182dcf',
opacity: 0.4,
width: 1
},
move: {
enable: true,
speed: 2,
direction: 'none',
random: false,
straight: false,
out_mode: 'out',
bounce: true,
attract: {
enable: true,
rotateX: 600,
rotateY: 1200
}
}
},
interactivity: {
detect_on: 'window',
events: {
onhover: {
enable: true,
mode: 'repulse'
},
onclick: {
enable: true,
mode: 'push'
},
resize: true
},
modes: {
grab: {
distance: 140,
line_linked: {
opacity: 1
}
},
bubble: {
distance: 400,
size: 40,
duration: 2,
opacity: 8,
speed: 3
},
repulse: {
distance: 200,
duration: 0.4
},
push: {
particles_nb: 4
},
remove: {
particles_nb: 2
}
}
},
retina_detect: true
});
</script>
</body>
</html>

1541
particles.js Normal file

File diff suppressed because it is too large Load diff

156
style.css Normal file
View file

@ -0,0 +1,156 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--font: 'Roboto Mono', monospace;
--background: black;
--color: #A9A9A9;
}
body{
background-color: var(--background);
color: var(--color);
font-family: var(--font);
margin: 0;
padding: 0;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
display: flex;
min-height: 100vh;
min-width: 100vw;
flex-direction: column;
}
.container {
flex: 1 auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.content{
display: flex;
flex-direction: column;
flex: 1 auto;
align-items: center;
justify-content: center;
margin: 0;
}
footer{
text-align: center;
font-size: 0.75rem;
font-weight: 400;
padding-bottom: 20px;
}
#userPhoto{
width: 96px;
height: 96px;
display: block;
margin: 35px auto 20px;
border-radius: 50%;
border: solid var(--color) 2px;
}
#userName{
width: 100%;
font-size: 1.5rem;
font-weight: 400;
text-align: center;
text-decoration: none;
line-height: 1.25;
display: block;
color: var(--color);
}
#links{
max-width: 90%;
width: auto;
display: block;
margin: 27px auto;
}
.link{
display: block;
margin-bottom: 20px;
padding: 17px;
font-size: 1rem;
font-weight: 500;
border-radius: 5px;
border: dashed var(--color) 2px;
text-align: center;
text-decoration: none;
color: var(--color);
word-wrap: break-word;
}
/* unvisited link */
a:link {
color: var(--color);
}
/* visited link */
a:visited {
color: var(--color);
}
/* mouse over link */
a:hover {
color: darkgrey;
position: relative;
}
.bitcoin:hover:after {
content: url(img/bitcoinQR.png); /* no need for qoutes */
display: block;
position: absolute;
left: 123px; /* change this value to one that suits you */
top: 56px; /* change this value to one that suits you */
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #202124;
--color: white;
}
}
#particles-js {
position: fixed;
width: 100%;
height: 100%;
background-color: #202124;
background-image: url('');
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
z-index: -1; /* Set a negative value to place it behind your content */
}