rust-letter-werfox-cafe/archive/src/App.css

64 lines
917 B
CSS

.App {
text-align: center;
animation: fadein 2s;
}
.App-logo {
height: 40vmin;
pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-grow-shrink infinite 2s cubic-bezier(1, 0, 0, 1);
}
}
.App-header {
background-color: rgb(255, 149, 172);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: #242424;
}
.App-statement {
color: white;
}
.App-button {
background-color: rgb(3, 102, 216);
color: white;
}
.Poem-statement {
color: white;
animation: fadein 2s;
}
@keyframes App-logo-grow-shrink {
0% {
transform: scale(0.5);
}
40% {
transform: scale(1.2);
}
60% {
transform: scale(1.2);
}
100% {
transform: scale(0.5);
}
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}