generated from corysanin/nodejs-web-template
Add install count to homepage
This commit is contained in:
@@ -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%;
|
||||
|
||||
@@ -44,4 +44,8 @@ a.btn {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#installs span {
|
||||
background: #1A237E;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user