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

@ -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);
}