123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- #sidebar-toggle {
- display: none;
- @include breakpoint(mobile-only) {
- display: inline-block;
- }
- }
- #sidebar {
- @extend .default-animation;
- background-color: $sidebar-bg;
- position: fixed;
- top: 0;
- width: $sidebar-width;
- bottom: 0;
- left: 0;
- font-weight: $font-weight-medium;
- font-size: 15px;
- a {
- color: $sidebar-link;
- &:hover {
- color: lighten($sidebar-link, 10%);
- }
- &.subtitle {
- color: rgba($sidebar-link, 0.6);
- }
- }
- hr {
- border-bottom: 1px solid darken($sidebar-bg, 3%);
- }
- a.padding {
- padding: 0 1rem;
- }
- h5 {
- margin: 2rem 0 0;
- position: relative;
- line-height: 2;
- a {
- display: block;
- margin-left: 0;
- margin-right: 0;
- padding-left: 1rem;
- padding-right: 1rem;
- }
- i {
- color: rgba($sidebar-link, 0.6);
- position: absolute;
- right: 0.6rem;
- top: 0.7rem;
- font-size: 80%;
- }
- &.parent {
- a {
- background: darken($sidebar-bg, 7%);
- color: lighten($sidebar-link, 5%) !important;
- }
- }
- &.active {
- a {
- background: $white;
- color: $core-text !important;
- }
- i {
- color: $core-text !important;
- }
- }
- }
- h5 + ul.topics {
- display: none;
- margin-top: 0;
- }
- h5.parent, h5.active {
- + ul.topics {
- display: block;
- }
- }
- ul {
- @extend .default-animation;
- list-style: none;
- padding: 0;
- margin: 0;
- &.searched {
- a {
- color: darken($sidebar-link, 20%);
- }
- .search-match {
- a {
- color: lighten($sidebar-link, 10%);
- &:hover {
- color: lighten($sidebar-link, 20%);
- }
- }
- }
- }
- &.topics {
- margin: 0 1rem;
- &.searched {
- ul {
- display: block;
- }
- }
- ul {
- display: none;
- padding-bottom: 1rem;
- ul {
- padding-bottom: 0;
- }
- }
- li.parent ul, > li.active ul {
- display: block;
- }
- > li {
- > a {
- line-height: 2rem;
- font-size: 1.1rem;
- b {
- opacity: 0.5;
- font-weight: normal;
- }
- .fa {
- margin-top: 9px;
- }
- }
- &.parent, &.active {
- background: darken($sidebar-bg, 5%);
- margin-left: -1rem;
- margin-right: -1rem;
- padding-left: 1rem;
- padding-right: 1rem;
- }
- }
- }
- li.active > a {
- background: $white;
- color: $core-text !important;
- margin-left: -1rem;
- margin-right: -1rem;
- padding-left: 1rem;
- padding-right: 1rem;
- }
- li {
- padding: 0;
- &.visited + span {
- margin-right: 16px;
- }
- a {
- display: block;
- padding: 2px 0;
- span {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- display: block;
- }
- }
- > a {
- padding: 4px 0;
- }
- .fa {
- display: none;
- float: right;
- font-size: 13px;
- min-width: 16px;
- margin: 4px 0 0 0;
- text-align: right;
- }
- &.visited {
- > a .read-icon {
- color: $core-accent;
- display: inline;
- }
- }
- li {
- padding-left: 1rem;
- text-indent: 0.2rem;
- }
- }
- }
- }
|