App.css 798 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. height: 20vmin;
  6. pointer-events: none;
  7. }
  8. @media (prefers-reduced-motion: no-preference) {
  9. .App-logo.rotate {
  10. animation: App-logo-spin infinite 20s linear;
  11. }
  12. }
  13. div.inline-logo {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. div.inline-logo > img {
  20. margin-right: 3vw;
  21. }
  22. div.inline-logo .smaller {
  23. height: 10vh;
  24. }
  25. .App-header {
  26. background-color: #282c34;
  27. min-height: 100vh;
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. justify-content: center;
  32. font-size: calc(10px + 2vmin);
  33. color: white;
  34. }
  35. .App-link {
  36. color: #61dafb;
  37. margin-bottom: 5vh;
  38. }
  39. @keyframes App-logo-spin {
  40. from {
  41. transform: rotate(0deg);
  42. }
  43. to {
  44. transform: rotate(360deg);
  45. }
  46. }