started layout

This commit is contained in:
neon443
2024-04-02 15:11:19 +01:00
parent b818da1c60
commit e756dfa690
5 changed files with 25 additions and 0 deletions

View File

@@ -125,6 +125,21 @@ h3 {
padding: 20px 10px;
}
@keyframes iconhover {
from {transform: scale(1, 1);}
to {transform: scale(1.05, 1.05)}
}
.icon {
border-radius: 5px;
}
.icon:hover {
animation-name: iconhover;
animation-duration: 0.25s;
animation-timing-function: ease-in-out;
animation-fill-mode: both;
}
@media (prefers-color-scheme: dark) {
* {
color: #ddd;