App.css 341 B

123456789101112131415161718192021222324
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. animation: App-logo-spin infinite 10s linear;
  6. height: 80px;
  7. }
  8. .App-header {
  9. background-color: #222;
  10. height: 150px;
  11. padding: 20px;
  12. color: white;
  13. }
  14. .App-intro {
  15. font-size: large;
  16. }
  17. @keyframes App-logo-spin {
  18. from { transform: rotate(0deg); }
  19. to { transform: rotate(360deg); }
  20. }