Finally added codeberg link

This commit is contained in:
Violet 2023-09-22 14:33:48 +00:00 committed by GitHub
parent 2f42b01e57
commit e76eee7cd9
2 changed files with 18 additions and 9 deletions

View file

@ -19,10 +19,10 @@
<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 codeberg!</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>
<div id="links">
<a href="/socials/">Socials</a>
<a class="buttonLink" href="/socials/">Socials</a>
</div>
</div>
</body>

View file

@ -81,21 +81,30 @@ body {
}
a {
border: 2px white solid;
border-radius: 0px;
color: rgb(230, 175, 255);
background-color: black;
padding: 5px;
margin: 5px;
text-decoration: none;
font-size: 2rem;
display: inline-block;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover {
transform: scale(1.1);
margin: 7px;
color: white;
}
.buttonLink {
font-size: 2rem;
border: 2px white solid;
border-radius: 0px;
background-color: black;
padding: 5px;
margin: 5px;
}
.buttonLink:hover {
background-color: rgb(60, 50, 75);
transform: scale(1.2);
transform: scale(1.1);
color: white;
transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}