Sha256: 306c65353784c6e48bcbdfda8e0a6929ef6bc17ceda9eeb7762c43179511e26c
Contents?: true
Size: 1.36 KB
Versions: 5
Compression:
Stored size: 1.36 KB
Contents
// Table of Contents // ================================================== // Sidebar // scss-lint:disable NestingDepth // Sidebar // ================================================== .sidebar { border-right-style: solid; border-right-width: 1px; box-sizing: border-box; display: block; height: 100%; overflow-x: hidden; overflow-y: auto; width: 100%; &.dark { .sidebar-nav { > ul { background: color(light-black); } } } &.light { .sidebar-nav { > ul { background: color(white); } } } &.right { border-left-style: solid; border-left-width: 1px; border-right: 0; } } .sidebar-header, .sidebar-footer { padding: 30px 0; text-align: center; } .sidebar-body { padding: 0 15px; } .sidebar-nav { > a { border-bottom-style: solid; border-bottom-width: 1px; box-sizing: border-box; display: block; padding: 20px; width: 100%; &:first-child { border-top-style: solid; border-top-width: 1px; } } > ul { background: color(light-haze); border-bottom-color: inherit; border-bottom-style: solid; border-bottom-width: 1px; list-style: none; padding: 15px 30px; a { display: block; padding: 5px; &:hover, &.active, &:active, &:focus { color: color(primary); } } > li.active { color: color(primary); } } }
Version data entries
5 entries across 5 versions & 1 rubygems