Socials page

This commit is contained in:
Bingus_Violet 2024-02-12 14:05:07 -06:00
parent bebacd675d
commit 4b8ed06550
5 changed files with 102 additions and 12 deletions

View file

@ -75,6 +75,7 @@
"word highlighting": "yellow",
"replaceAll": "limegreen",
"Godot Engine": "#64B5F6",
"javascript": "yellow"
"javascript": "yellow",
"NodeJS": "limegreen"
}
}

View file

@ -35,20 +35,14 @@
<p>Developer</p>
<p>{DISCORD_STATUS}</p>
</div>
</div>
</div>
<a style="color: rgb(255, 100, 100); " class="chip" href="https://https://ko-fi.com/bingus_violet">Donate (Ko-fi)</a>
<div>
<!-- <span style="white-space: nowrap;"> -->
<!-- <p class="chip"><a href="https://status.violets-purgatory.dev">Status</a></p> -->
<!-- </span> -->
<p style="padding: 10px;">Hi! I'm Violet, a 15 year old web and game developer. <br>
I aspire to make fast and javascript free websites! I'm currently learning the Godot Engine, and have been becoming quite fluent in NodeJS.</p>
</div>
</div>
<h1>Links</h1>
<br>
<a class="chip" href="https://beta.violets-purgatory.dev">Beta site</a>
<a class="chip" href="https://blog.violets-purgatory.dev">Blog</a>
<a class="chip" href="https://fs.violets-purgatory.dev">Clipdump</a>
{PATH_SOCIALS}
</main>
</body>

View file

@ -5,7 +5,7 @@
.mainTitle {
font-size: 2.75rem;
color: rgb(215, 80, 255);
color: rgb(200, 150, 255);
display: block;
padding-top: 5px;
line-height: 2.2rem;

74
static/socials/index.html Normal file
View file

@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="../style.css">
<link rel="stylesheet" type="text/css" href="../subpage.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Violet's Purgatory</title>
<meta name="darkreader-lock">
<meta content="Welcome to Violet's Purgatory" property="og:title" />
<meta
content="Hi, I'm Violet, a 15 year old web developer with strong ambitions. You can find more info on my site!"
property="og:description" />
<meta content="https://api.violets-purgatory.dev/v1/pfp" property="og:image" />
<meta content="#a200ff" data-react-helmet="true" name="theme-color" />
<!-- To any who dare read this code! I stole the code above off of stack overflow :P-->
</head>
<body>
<h1>Links & Socials</h1>
<main class="grid-container">
<div class="grid-child">
<div>
<h3>Subsites</h3>
<a class="chip" href="https://beta.violets-purgatory.dev">Beta site</a>
<a class="chip" href="https://blog.violets-purgatory.dev">Blog</a>
<a class="chip" href="https://fs.violets-purgatory.dev">Clipdump</a>
</div>
</div>
<div class="grid-child">
<div>
<h3>Other sites/projects</h3>
<a class="chip" href="https://univerter.dev">Univerter</a>
<a class="chip" href="https://codeberg.org/bingus_violet/steamrpc">SteamRPC</a>
</div>
</div>
<div class="grid-child">
<div>
<h3>Social Media</h3>
<a class="chip" href="https://www.youtube.com/channel/UChcrBJNJLZucy3TPyGyAY2g">Youtube</a>
<a class="chip" href="https://ko-fi.com/bingus_violet" style="color: rgb(255, 100, 100);">Ko-fi</a>
<a class="chip" href="https://void.lgbt/bingus_violet" rel="me">Fedi</a>
</div>
</div>
<div class="grid-child">
<div>
<h3>Chat</h3>
<a class="chip" href="https://matrix.to/#/@bingus_violet:catgirl.cloud">Matrix</a>
</div>
</div>
<div class="grid-child">
<div>
<h3>Coding</h3>
<a class="chip" href="https://codeberg.org/Bingus_Violet">Codeberg</a>
<a class="chip" href="https://hub.docker.com/u/bingusviolet">Docker</a>
<a class="chip" href="https://github.com/Violets-puragtory">Github</a>
</div>
</div>
<div class="grid-child">
<div>
<h3>Games</h3>
<a class="chip" href="https://steamcommunity.com/id/Violet-The-Thigh-high-obtainer/">Steam</a>
</div>
</div>
</main>
</body>
</html>

View file

@ -50,6 +50,27 @@ a {
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
h3 {
font-size: 1.5rem;
padding: 10px;
}
@media screen and (min-width: 600px) {
.grid-container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.grid-child {
margin: auto;
align-content: center;
/* border: 2px white solid; */
}
}
.chip {
position: relative;
z-index: 3;
@ -77,7 +98,7 @@ a {
transition: transform 0.75s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.chip:hover > .smallimg {
.chip:hover>.smallimg {
background-color: rgb(10, 0, 25);
}