#root {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.logo, .logo2 {
height: 10em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo2 { height: 13.37em }
.logo:hover, .logo2:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover, .logo.tailwind:hover {
filter: drop-shadow(0 0 2em #61dafbaa);
}
@keyframes logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes logo-spin2 {
0%, 100% {
transform: scaleY(1);
}
50% {
transform: scaleY(-1);
}
}
@keyframes logo-spin3 {
0%, 100% {
transform: scaleX(1);
}
50% {
transform: scaleX(-1);
}
}
@keyframes logo-pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
}
@media (prefers-reduced-motion: no-preference) {
.logos a:nth-of-type(4) .logo {
animation: logo-spin2 infinite 20s ease-in-out;
}
.logos a:nth-of-type(3) .logo {
animation: logo-spin infinite 20s linear reverse;
}
.logos a:nth-of-type(2) .logo {
animation: logo-spin infinite 20s linear;
}
.logos a:nth-of-type(1) .logo {
animation: logo-spin3 infinite 20s ease-in-out;
}
.logos2 a:nth-of-type(1) .logo2 {
animation: logo-pulse infinite 2s ease-out;
}
}
.card {
padding: 2em;
}
.read-the-docs {
color: #888;
}
Top