Update Website

**General**

- Fixed Favicons
- Changed Pulse animation for buttons & Button Color
This commit is contained in:
2024-05-30 01:50:56 -05:00
parent 1a5474873a
commit f3bb81f392
11 changed files with 128 additions and 14 deletions

View File

@@ -70,9 +70,47 @@ body {
}
.link:hover {
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
animation: pulse 2s infinite;
}
.pulse {
margin:100px;
display: block;
width: 22px;
height: 22px;
border-radius: 50%;
background: #744ac7;
box-shadow: 0 0 0 #744ac7;
animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 #744ac7;
}
70% {
-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
@keyframes pulse {
0% {
-moz-box-shadow: 0 0 0 0 #744ac7;
box-shadow: 0 0 0 0 #744ac7;
}
70% {
-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
box-shadow: 0 0 0 10px rgba(204,169,44, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
box-shadow: 0 0 0 0 rgba(204,169,44, 0);
}
}
.github {
background-color: #353535;
}
@@ -90,7 +128,7 @@ body {
}
.stable {
background-color: #53c213;
background-color: #543592;
}
.torrents {