Link to Page
High Priority Projects
/* bounce down arrow */
.content-table tbody tr td:nth-of-type(3n) div, .content-table tbody tr td:nth-of-type(3n) p {
}
.arrow {
text-align: center;
margin: 0;
}
.bounce {
-webkit-animation: bounce 2s infinite;
animation: bounce 2s infinite;
}
.arrow a, .arrow a:visited {
color: #add745;
text-decoration: none;
font-size: 2em !important;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%,