index.css 641 B

12345678910111213141516171819202122232425262728293031323334
  1. .zl-365-bar {
  2. display: inline-block;
  3. flex: 0 0 47px;
  4. max-width: 47px;
  5. height: calc(100vh - 48px);
  6. background: var(--colorBarBackground);
  7. border-right: var(--colorBarBorderBackground);
  8. text-align: center;
  9. }
  10. .bar-li {
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. text-align: center;
  15. font-size: 16px;
  16. width: 47px;
  17. height: 47px;
  18. position: relative;
  19. background: 0 0;
  20. border: none;
  21. color: inherit;
  22. padding: 0;
  23. cursor: pointer;
  24. }
  25. .bar-li:hover {
  26. background: #E0E0E0;
  27. }
  28. span.bar-li-svg {
  29. color: rgb(96, 94, 92);
  30. }