App.css 780 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. .App-header {
  14. background-color: #282c34;
  15. min-height: 100vh;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. font-size: calc(10px + 2vmin);
  21. color: white;
  22. }
  23. .App-link {
  24. color: #61dafb;
  25. }
  26. @keyframes App-logo-spin {
  27. from {
  28. transform: rotate(0deg);
  29. }
  30. to {
  31. transform: rotate(360deg);
  32. }
  33. }
  34. .table{
  35. margin-top: 2em;
  36. margin-left: 4em;
  37. text-align: center;
  38. border: 3px solid purple;
  39. font-size: 25px;
  40. line-height: 2em;
  41. }
  42. .cap{
  43. padding-top: 0.5em;
  44. padding-bottom: 0.5em;
  45. border: inherit;
  46. }