rever!!!
This commit is contained in:
parent
8163b16cea
commit
faf5bd4f90
6 changed files with 795 additions and 0 deletions
43
static/index.html
Normal file
43
static/index.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!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="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> -->
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
|
||||
<title>Violet's Purgatory</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Violet's Purgatory</h1>
|
||||
<hr>
|
||||
<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 class="chip">Violet</p>
|
||||
<p class="chip">They/Them</p>
|
||||
<p class="chip">Non-Binary</p>
|
||||
<hr>
|
||||
<h2>Where you can find me:</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>
|
||||
<br>
|
||||
<p class="chip">Fedi: <a href="https://tech.lgbt/@Bingus_Violet">@Bingus_Violet@tech.lgbt</a></p>
|
||||
<p class="chip">Github: <a href="https://github.com/Violets-puragtory">Violets-puragtory</a></p>
|
||||
<p class="chip">Codeberg: <a href="https://codeberg.org/Bingus_Violet">Bingus_Violet</a></p>
|
||||
<p class="chip">Steam: <a href="https://steamcommunity.com/id/Violet-The-Thigh-high-obtainer/">Violet</a></p>
|
||||
<br>
|
||||
<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>
|
||||
<h2>Where did you get this very original website design?</h2>
|
||||
<p style="font-size: 1.35rem;">Uhmmmmmm..... nowhere :></p>
|
||||
<p style="font-size: 0.9rem; color: gray">3 versions (including this one) of my website have been a direct rip off of my <a href="https://lunasother.nl">girlfriend's websites</a> T^T</p>
|
||||
<hr>
|
||||
<p>If you have any problems with the site, put up an issue on <a href="https://codeberg.org/Bingus_Violet/Violets-Purgatory">codeberg!</a></p>
|
||||
</body>
|
||||
|
||||
</html>
|
84
static/style.css
Normal file
84
static/style.css
Normal file
|
@ -0,0 +1,84 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');
|
||||
|
||||
:root {
|
||||
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: rgb(225, 215, 255);
|
||||
font-size: 2.5rem;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: white;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
body {
|
||||
padding: 0;
|
||||
margin: auto;
|
||||
background-color: black;
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: rgb(230, 175, 255);
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
.chip {
|
||||
font-size: 1.3rem;
|
||||
border: 2px white solid;
|
||||
border-radius: 25px;
|
||||
background-color: black;
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
display: inline-block;
|
||||
transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
transform: scale(1)
|
||||
}
|
||||
|
||||
.chip:hover {
|
||||
background-color: rgb(20, 10, 30);
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: white;
|
||||
transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
p {
|
||||
color: white;
|
||||
font-size: 1.2rem;
|
||||
padding: 0;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 30%;
|
||||
max-width: 150px;
|
||||
min-width: 100px;
|
||||
border: rgb(175, 75, 200) 4px solid;
|
||||
border-radius: 50%;
|
||||
transform: scale(0.9);
|
||||
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
img:hover {
|
||||
transform: scale(1);
|
||||
/* border-color: rgb(255, 200, 255); */
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
hr {
|
||||
color: white;
|
||||
opacity: 0.25;
|
||||
border-width: 2px;
|
||||
margin: 20px 10%;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue