App.css 582 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. height: 40vmin;
  6. pointer-events: none;
  7. }
  8. @media (prefers-reduced-motion: no-preference) {
  9. .App-logo {
  10. animation: App-logo-float infinite 3s ease-in-out;
  11. }
  12. }
  13. .App-header {
  14. min-height: 100vh;
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: center;
  19. font-size: calc(10px + 2vmin);
  20. }
  21. .App-link {
  22. color: rgb(112, 76, 182);
  23. }
  24. @keyframes App-logo-float {
  25. 0% {
  26. transform: translateY(0);
  27. }
  28. 50% {
  29. transform: translateY(10px);
  30. }
  31. 100% {
  32. transform: translateY(0px);
  33. }
  34. }