github.com/bosssauce/ponzu@v0.11.1-0.20200102001432-9bc41b703131/system/admin/static/editor/sass/components/_table_of_contents.scss (about) 1 /*************** 2 Nav List 3 ***************/ 4 .table-of-contents { 5 &.fixed { 6 position: fixed; 7 } 8 9 li { 10 padding: 2px 0; 11 } 12 a { 13 display: inline-block; 14 font-weight: 300; 15 color: #757575; 16 padding-left: 20px; 17 height: 1.5rem; 18 line-height: 1.5rem; 19 letter-spacing: .4; 20 display: inline-block; 21 22 &:hover { 23 color: lighten(#757575, 20%); 24 padding-left: 19px; 25 border-left: 1px solid lighten(color("materialize-red", "base"),10%); 26 } 27 &.active { 28 font-weight: 500; 29 padding-left: 18px; 30 border-left: 2px solid lighten(color("materialize-red", "base"),10%); 31 } 32 } 33 }