just another normal everyday feature, nothing to see here

This commit is contained in:
SpikeHD
2022-07-14 18:05:52 -07:00
parent abafc94379
commit f24f3af377
3 changed files with 77 additions and 1 deletions

View File

@@ -25,4 +25,30 @@
#version {
margin: 0px 6px;
color: #434343;
}
#unassumingButton {
font-weight: bold;
margin: 0px 6px;
color: #141414;
transition: color 0.2s ease-in-out;
}
#unassumingButton:hover {
color: #434343;
}
#unassumingButton.spin {
color: #fff;
animation: spin 0.5s ease-in-out;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}