App.css 625 B

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