oops *trips and falls and deletes EVERYTHING*
This commit is contained in:
parent
9cd9050d95
commit
8163b16cea
8 changed files with 127 additions and 962 deletions
|
@ -1,33 +0,0 @@
|
|||
<!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>
|
||||
|
||||
<p><br>Hi! I'm Violet, a teenage web and game developer.</p>
|
||||
<p>My main engine is Godot, and i'm currently bouncing between projects, but I am mainly focusing on a space
|
||||
shooter and a boss rush right now.</p>
|
||||
<p>If you have any issues with the site, put up an issue on <a href="https://codeberg.org/Bingus_Violet/Violets-Purgatory">codeberg!</a></p>
|
||||
<!-- <hr> -->
|
||||
<h1>Socials</h1>
|
||||
<a class="chip" href="https://tech.lgbt/@Bingus_Violet">Fedi: <br>@Bingus_Violet@tech.lgbt</a>
|
||||
<a class="chip" href="https://github.com/Violets-puragtory">Github: <br>Violets-puragtory</a>
|
||||
<a class="chip" href="https://codeberg.org/Bingus_Violet">Codeberg: <br>Bingus_Violet</a>
|
||||
<p class="chip">Matrix: <br>@bingus_violet:catgirl.cloud</p>
|
||||
<p class="chip">Revolt: <br>BingusViolet#5573</p>
|
||||
<p class="chip">Discord: <br>bingus_violet</p><br>
|
||||
<p>Sorry for the small website, i just ran out of ideas and it's gone through alot of redesigning. :P</p>
|
||||
</body>
|
||||
|
||||
</html>
|
134
static/style.css
134
static/style.css
|
@ -1,134 +0,0 @@
|
|||
@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;
|
||||
|
||||
--bg-color-1: rgb(125, 25, 100);
|
||||
--bg-color-2: rgb(75, 25, 125);
|
||||
|
||||
--faded-bg-color-1: rgb(25, 20, 40);
|
||||
--faded-bg-color-2: rgb(25, 25, 60);
|
||||
|
||||
--button-bg-1: rgb(75, 75, 125);
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: rgb(225, 215, 255);
|
||||
font-size: 2.5rem;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: white;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
body {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color: var(--faded-bg-color-2);
|
||||
background-image: linear-gradient(45deg, var(--faded-bg-color-1), var(--faded-bg-color-2)) ;
|
||||
}
|
||||
|
||||
.centered {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#card {
|
||||
/* border: rgb(225, 225, 255) 4px solid; */
|
||||
/* border-radius: 25px; */
|
||||
/* max-width: 95%;
|
||||
max-height: 95%; */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 15px;
|
||||
background-color: var(--bg-color-2);
|
||||
background-image: linear-gradient(var(--bg-color-1), var(--bg-color-2));
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#card > p {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.miniCard {
|
||||
text-align: center;
|
||||
border: rgb(225, 225, 255) 4px solid;
|
||||
border-radius: 25px;
|
||||
padding: 15px;
|
||||
margin: 10px;
|
||||
background-color: var(--bg-color-2);
|
||||
background-image: linear-gradient(var(--bg-color-1), var(--bg-color-2));
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
#links {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
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.5rem;
|
||||
border: 2px white solid;
|
||||
border-radius: 25px;
|
||||
background-color: black;
|
||||
padding: 8px;
|
||||
margin: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
a.chip:hover {
|
||||
margin: 8px;
|
||||
background-color: rgb(60, 50, 75);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
transform: scale(1.05);
|
||||
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.5;
|
||||
border-width: 2px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue