style.css 631 B

1234567891011121314151617181920212223242526272829
  1. :root {
  2. --sidebar-width: 250px;
  3. --sidebar-close: 88px;
  4. --tran-02: all 0.2s ease;
  5. --tran-03: all 0.3s ease;
  6. --tran-04: all 0.3s ease;
  7. --tran-05: all 0.3s ease;
  8. --body-color: #110022;
  9. --sidebar-color: #291A38;
  10. --text-color: #ccc;
  11. --primary-color: #EB4C42;
  12. --primary-light-color: #241;
  13. --router-color: transparent;
  14. --router-hover-color: linear-gradient(45deg, rgba(175, 38, 113, 1) 0%, rgba(0, 0, 0, 0) 100%);
  15. --router-color-close: #992885;
  16. }
  17. * {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: border-box;
  21. }
  22. body {
  23. background: var(--body-color);
  24. color: var(--text-color);
  25. transition: var(--tran-05);
  26. }
  27. section{
  28. width: 100%;
  29. }