Add install count to homepage

This commit is contained in:
2025-10-31 23:18:18 -05:00
parent 1a73732f7c
commit f5c9d8c0c4
5 changed files with 56 additions and 2 deletions

View File

@@ -73,6 +73,34 @@ img {
max-width: 100%;
}
#installs {
h1 {
animation-iteration-count: infinite;
animation-name: zoomie;
animation-duration: 1.5s;
animation-timing-function: ease-out;
}
span {
padding: .05em .25em;
border-radius: .15em;
}
}
@keyframes zoomie {
0% {
transform: perspective(800px) translate3d(0, 0, 0px);
}
50% {
transform: perspective(800px) translate3d(0, 0, 40px);
}
100% {
transform: perspective(800px) translate3d(0, 0, 0px);
}
}
@media screen and (max-width:540px) {
.content {
width: 95%;

View File

@@ -44,4 +44,8 @@ a.btn {
color: #fff;
}
}
}
}
#installs span {
background: #1A237E;
}