_side-nav.sass 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .side-nav
  2. position: relative
  3. display: flex
  4. width: 100px
  5. height: 70%
  6. max-height: 750px
  7. flex-direction: column
  8. justify-content: space-around
  9. margin: 0
  10. padding: 0
  11. list-style-position: inside
  12. z-index: 10
  13. & > li
  14. position: relative
  15. top: -5px
  16. color: $white
  17. font-size: 6px
  18. cursor: pointer
  19. span
  20. position: relative
  21. top: 3px
  22. left: 10px
  23. color: $white
  24. font-size: 14px
  25. font-weight: 300
  26. opacity: 0
  27. visibility: hidden
  28. &::before
  29. position: absolute
  30. top: 3px
  31. left: 10px
  32. color: #555
  33. font-size: 14px
  34. font-weight: 300
  35. li:nth-child(1)::before
  36. content: "01"
  37. li:nth-child(2)::before
  38. content: "02"
  39. li:nth-child(3)::before
  40. content: "03"
  41. li:nth-child(4)::before
  42. content: "04"
  43. li:nth-child(5)::before
  44. content: "05"
  45. li.is-active
  46. color: $highlight
  47. transition: color .4s ease-in-out
  48. span
  49. opacity: 1
  50. visibility: visible
  51. transition: opacity .4s ease-in-out
  52. &::before
  53. left: -33px
  54. color: $white