Special Socials Page!

This commit is contained in:
Violet 2023-10-22 16:34:09 -05:00
parent e1cdf96cf2
commit 41876a70ba
3 changed files with 48 additions and 19 deletions

View file

@ -15,23 +15,20 @@
<h1>Violet's&nbsp;Purgatory</h1> <h1>Violet's&nbsp;Purgatory</h1>
<hr> <hr>
<h2>...Who?</h2> <h2>...Who?</h2>
<p>Hi! I'm Violet, a 14 year old web and game developer. <br> If it wasn't already clear, though, I am not a graphic designer TwT.</p> <p>Hi! I'm Violet, a generic web and game developer. <br> If it wasn't already clear, though, I am not a graphic designer TwT.</p>
<p class="chip">Violet</p><br> <p class="chip">Violet</p><br>
<p class="chip">They/Them</p> <p class="chip">They/Them</p>
<p class="chip">Non-Binary</p> <p class="chip">Non-Binary</p>
<p class="chip"><a href="p">(More info)</a></p> <p class="chip"><a href="p">(More info)</a></p>
<hr> <hr>
<h2>Where you can find me:</h2> <h2>Socials:</h2>
<p class="chip" style="border-color: red;">Ko-Fi: <a href="https://ko-fi.com/bingus_violet" style="color: rgb(255, 100, 100)">bingus_violet</a> - Please donate!</p> <p class="chip" style="border-color: red;">Ko-Fi: <a href="https://ko-fi.com/bingus_violet" style="color: rgb(255, 100, 100)">bingus_violet</a> - Please donate!</p>
<br> <br><br>
<p class="chip">Fedi: <a href="https://tech.lgbt/@Bingus_Violet">@Bingus_Violet@tech.lgbt</a></p> <p class="chip"><span style="color: limegreen">Matrix</span>: @bingus_violet:catgirl.cloud</p>
<p class="chip">Github: <a href="https://github.com/Violets-puragtory">Violets-puragtory</a></p> <p class="chip"><span style="color: red;">Revolt</span>: BingusViolet#5573</p>
<p class="chip">Codeberg: <a href="https://codeberg.org/Bingus_Violet">Bingus_Violet</a></p> <p class="chip"><span style="color: rgb(125, 150, 225)">Discord</span>: bingus_violet</p>
<p class="chip">Steam: <a href="https://steamcommunity.com/id/Violet-The-Thigh-high-obtainer/">Violet</a></p> <p class="chip"><a href="s">More</a></p>
<br>
<p class="chip">Matrix: @bingus_violet:catgirl.cloud</p>
<p class="chip">Revolt: BingusViolet#5573</p>
<p class="chip">Discord: bingus_violet</p>
<hr> <hr>
<h2>Where did you get this very original website design?</h2> <h2>Where did you get this very original website design?</h2>
<p style="font-size: 1.35rem;">Uhmmmmmm..... nowhere :></p> <p style="font-size: 1.35rem;">Uhmmmmmm..... nowhere :></p>

29
static/s/index.html Normal file
View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>Socials - Violet's Purgatory</title>
</head>
<body>
<h1>Socials</h1>
<h2>Social media:</h2>
<p class="chip" style="color: rgb(200, 175, 255);">Fedi: <a href="https://tech.lgbt/@Bingus_Violet">@Bingus_Violet@tech.lgbt</a></p>
<p class="chip" style="color: rgb(255, 80, 80)">Youtube: <a href="https://www.youtube.com/channel/UChcrBJNJLZucy3TPyGyAY2g">Violet's Fiasco</a></p>
<br>
<h2>Git sites:</h2>
<p class="chip">Github: <a href="https://github.com/Violets-puragtory">Violets-puragtory</a></p>
<p class="chip" style="color: aqua">Codeberg: <a href="https://codeberg.org/Bingus_Violet">Bingus_Violet</a></p>
<h2>Game sites:</h2>
<p class="chip" style="color: darkgrey">Steam: <a href="https://steamcommunity.com/id/Violet-The-Thigh-high-obtainer/">Violet</a></p>
<h2>Chat Applications:</h2>
<p class="chip"><span style="color: limegreen">Matrix</span>: @bingus_violet:catgirl.cloud</p>
<p class="chip"><span style="color: red;">Revolt</span>: BingusViolet#5573</p>
<p class="chip"><span style="color: rgb(125, 150, 225)">Discord</span>: bingus_violet</p>
<br>
</body>
</html>

View file

@ -18,9 +18,9 @@ h2 {
} }
body { body {
padding: 0; padding: 15px;
margin: auto; margin: auto;
background-color: black; background-color: rgb(10, 5, 20);
max-width: 1100px; max-width: 1100px;
animation-name: "fade-in"; animation-name: "fade-in";
@ -38,18 +38,19 @@ a {
.chip { .chip {
font-size: 1.3rem; font-size: 1.3rem;
border: 2px white solid; border: 2px white solid;
border-radius: 25px; border-radius: 15px;
background-color: black; background-color: black;
padding: 10px; padding: 10px;
margin: 5px; margin: 5px;
display: inline-block; display: inline-block;
transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1); transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
transform: scale(1) /* transform: scale(0.95) */
} }
.chip:hover { .chip:hover {
background-color: rgb(20, 10, 30); /* background-color: rgb(20, 10, 30); */
transform: scale(1.05); /* transform: scale(1); */
font-size: 1.4rem;
} }
a:hover { a:hover {
@ -135,11 +136,13 @@ hr {
@keyframes fade-in { @keyframes fade-in {
0% { 0% {
opacity: 0; opacity: 0;
transform: translateY(20%) transform: translateY(20%);
background-color: black;
} }
100% { 100% {
opacity: 1; opacity: 1;
transform: none; transform: none;
background-color: rgb(10, 5, 20);
} }
} }