1
0

App.css 477 B

123456789101112131415161718192021222324252627282930313233343536
  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. }
  24. .category-list {
  25. float: left;
  26. padding: 0 10px;
  27. }
  28. .category-list select {
  29. min-width: 150px;
  30. }