App.css 377 B

12345678910111213141516171819202122232425262728
  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. @keyframes App-logo-spin {
  21. from { transform: rotate(0deg); }
  22. to { transform: rotate(360deg); }
  23. }