UNPKG

example-pagination

Version:
90 lines (82 loc) 1.97 kB
// // Side navigation // -------------------------------------------------- /** * Scrollspy and affixed enhanced navigation to highlight sections and secondary * sections of docs content. */ /* By default it's not affixed in mobile views, so undo that */ .sidebar.affix { position: static; } /* First level of nav */ .sidenav { margin-top: 30px; margin-bottom: 30px; padding-top: 10px; padding-bottom: 10px; text-shadow: 0 1px 0 #fff; background-color: #f7f5fa; border-radius: 5px; } /* All levels of nav */ .sidebar .nav > li > a { display: block; color: #716b7a; padding: 5px 20px; } .sidebar .nav > li > a:hover, .sidebar .nav > li > a:focus { text-decoration: none; background-color: #e5e3e9; border-right: 1px solid #dbd8e0; } .sidebar .nav > .active > a, .sidebar .nav > .active:hover > a, .sidebar .nav > .active:focus > a { font-weight: bold; color: @navbar-inverse-bg; background-color: transparent; border-right: 1px solid @navbar-inverse-bg; } /* Nav: second level (shown on .active) */ .sidebar .nav .nav { display: none; /* Hide by default, but at >768px, show it */ margin-bottom: 8px; } .sidebar .nav .nav > li > a { padding-top: 3px; padding-bottom: 3px; padding-left: 30px; font-size: 90%; } /* Show and affix the side nav when space allows it */ @media (min-width: 992px) { .sidebar .nav > .active > ul { display: block; } /* Widen the fixed sidebar */ .sidebar.affix, .sidebar.affix-bottom { width: 213px; } .sidebar.affix { position: fixed; /* Undo the static from mobile first approach */ top: 80px; } .sidebar.affix-bottom { position: absolute; /* Undo the static from mobile first approach */ } .sidebar.affix-bottom .sidenav, .sidebar.affix .sidenav { margin-top: 0; margin-bottom: 0; } } @media (min-width: 1200px) { /* Widen the fixed sidebar again */ .sidebar.affix-bottom, .sidebar.affix { width: 263px; } }