_table_of_contents.scss 586 B

123456789101112131415161718192021222324252627282930313233
  1. /***************
  2. Nav List
  3. ***************/
  4. .table-of-contents {
  5. &.fixed {
  6. position: fixed;
  7. }
  8. li {
  9. padding: 2px 0;
  10. }
  11. a {
  12. display: inline-block;
  13. font-weight: 300;
  14. color: #757575;
  15. padding-left: 16px;
  16. height: 1.5rem;
  17. line-height: 1.5rem;
  18. letter-spacing: .4;
  19. display: inline-block;
  20. &:hover {
  21. color: lighten(#757575, 20%);
  22. padding-left: 15px;
  23. border-left: 1px solid $primary-color;
  24. }
  25. &.active {
  26. font-weight: 500;
  27. padding-left: 14px;
  28. border-left: 2px solid $primary-color;
  29. }
  30. }
  31. }