Skip to content

Commit

Permalink
Update bio.html
Browse files Browse the repository at this point in the history
  • Loading branch information
M0chaCat authored Aug 11, 2024
1 parent 1235d52 commit 185fba6
Showing 1 changed file with 118 additions and 0 deletions.
118 changes: 118 additions & 0 deletions bio.html
Original file line number Diff line number Diff line change
@@ -1 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arcane</title>
<link rel="icon" type="image/png" href="/Mocha.png" rel="stylesheet">
<style>
@font-face {
font-family: nasinnanpa;
src: url("https://arcane.kitties.cat/Nasin Nanpa.otf");
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', 'Arial', 'sans-serif', 'nasinnanpa';
background: url('https://wallpapercave.com/wp/wp10407656.png') no-repeat center center fixed;
background-size: cover;
color: #fff;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
position: relative;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.content-container {
background: rgba(100, 100, 100, 0.1);
backdrop-filter: blur(10px);
padding: 60px;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
width: 60%;
max-width: 600px;
margin-bottom: 40px;
}

.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 20px;
transition: transform 0.3s ease;
box-shadow: 0 0 25px rgba(255, 255, 255, 0.5); /* Soft glow effect */
}

.profile-pic:hover {
transform: scale(1.1);
}

.cat-gif {
position: fixed;
right: 0;
bottom: 0;
cursor: pointer;
}

ul.rules-list {
list-style-type: none;
padding: 0;
margin: 0;
font-size: 18px;
}

ul.rules-list li {
margin-bottom: 10px;
}
</style>
</head>
<body>

<script>
fetch("https://raw.githubusercontent.com/adryd325/oneko.js/8fa8a1864aa71cd7a794d58bc139e755e96a236c/oneko.js")
.then(x => x.text())
.then(s => s.replace("./oneko.gif", "https://raw.githubusercontent.com/adryd325/oneko.js/14bab15a755d0e35cd4ae19c931d96d306f99f42/oneko.gif")
.replace("(isReducedMotion)", "(false)"))
.then(eval);
</script>

<div class="overlay">
<div class="content-container">
<img src="/Mocha.png" alt="Arcane Profile Picture" class="profile-pic">
<h1>Hewo!!</h1>
<h3>DM rulez</h3>
<ul class="rules-list">
<li>be nice :c</li>
<li>dont talk abt suicide or sh</li>
<li>no nsfw (unless i sayy~ ;3)</li>
<li>no-one under 13</li>
</ul>
</div>
<img src="https://circulars.dev/circular-cat.gif" alt="Cat GIF" class="cat-gif" onclick="meow()">
</div>

<script>
let meowsound = new Audio('https://circulars.dev/meow.mp3')
function meow() {
meowsound.play();
}
</script>
</body>
</html>

0 comments on commit 185fba6

Please sign in to comment.