App.css 506 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. animation: App-logo-spin infinite 20s linear;
  6. height: 80px;
  7. }
  8. .App-header {
  9. background-color: #222;
  10. height: 150px;
  11. padding: 20px;
  12. color: white;
  13. }
  14. .App-title {
  15. font-size: 1.5em;
  16. }
  17. .App-intro {
  18. font-size: large;
  19. }
  20. label {
  21. clear: right;
  22. display: block;
  23. float: left;
  24. margin-right: 0.5em;
  25. width: 6em;
  26. }
  27. label {
  28. text-align: right;
  29. }
  30. @keyframes App-logo-spin {
  31. from { transform: rotate(0deg); }
  32. to { transform: rotate(360deg); }
  33. }