main.css 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @import './base.css';
  2. #app {
  3. /* margin: 0 auto;
  4. font-weight: normal; */
  5. }
  6. a,
  7. .green {
  8. text-decoration: none;
  9. color: hsla(160, 100%, 37%, 1);
  10. transition: 0.4s;
  11. }
  12. ::-webkit-scrollbar-track-piece {
  13. background-color: #fff;
  14. -webkit-border-radius: 0;
  15. }
  16. ::-webkit-scrollbar {
  17. width: 8px;
  18. height: 8px;
  19. }
  20. ::-webkit-scrollbar-thumb {
  21. height: 50px;
  22. background-color: #ddd;
  23. -webkit-border-radius: 4px;
  24. outline: 2px solid #fff;
  25. outline-offset: -2px;
  26. border: 2px solid #fff;
  27. }
  28. ::-webkit-scrollbar-thumb:hover {
  29. height: 50px;
  30. background-color: #9f9f9f;
  31. -webkit-border-radius: 4px;
  32. }
  33. @media (hover: hover) {
  34. a:hover {
  35. /* background-color: hsla(160, 100%, 37%, 0.2); */
  36. }
  37. }
  38. .contentPage{
  39. max-width: 1366px;
  40. margin: 0 auto;
  41. min-width: 1200px;
  42. }