tomadoro/src/components/Logo.css

23 lines
442 B
CSS
Raw Normal View History

2019-03-21 12:00:36 +01:00
.App-logo {
2020-05-12 15:25:33 +02:00
height: 140px;
filter: drop-shadow(0 0 0.58rem #1f1f1f);
2019-03-21 12:00:36 +01:00
align-items: center;
justify-content: center;
text-align: center;
2019-04-03 23:09:38 +02:00
transition: all .3s ease-in-out;
2019-03-21 12:00:36 +01:00
}
2019-10-25 09:58:41 +02:00
.App-logo:hover { transform: scale(1.1); }
2019-04-03 23:09:38 +02:00
2019-03-21 12:00:36 +01:00
.App-logo-rotation {
animation: App-logo-spin infinite 5s linear;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}