App.css 732 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. text-align: center;
  11. width: 100px;
  12. height: 100px;
  13. border-radius: 50px;
  14. animation: App-logo-spin infinite 20s linear;
  15. }
  16. }
  17. .App-header {
  18. /* background-color: #282c34; */
  19. min-height: 100vh;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: space-between;
  24. font-size: calc(10px + 2vmin);
  25. /* color: white; */
  26. }
  27. .App-link {
  28. color: #61dafb;
  29. }
  30. @keyframes App-logo-spin {
  31. from {
  32. transform: rotate(0deg);
  33. }
  34. to {
  35. transform: rotate(360deg);
  36. }
  37. }