Sha256: 939945c8200ccf2abba30a9365f84fbf84adefffa5ef1873924aa0b0ea89e8f4
Contents?: true
Size: 1.61 KB
Versions: 6
Compression:
Stored size: 1.61 KB
Contents
/* Table of Contents ================================================== # Sidebar # Media Queries */ /* # Sidebar ================================================== */ .sidebar { background: rgba(35,41,55,1); border-left: 2px solid rgba(0,0,0,0.2); box-sizing: border-box; height: 100%; min-width: 280px; position: fixed; width: 280px; } .sidebar-alt { border-right: 1px solid rgba(0,0,0,0.2); border-left: 0; } .sidebar-header { border-bottom: 1px solid rgba(0,0,0,0.2); font-size: 12px; line-height: 12px; padding: 12px 20px 10px 10px; } .sidebar-alt > .sidebar-header { padding-right: 10px; padding-left: 20px; } .sidebar-header > h6 { color: rgba(255,255,255,1); font-size: 12px; font-weight: normal; letter-spacing: 1px; line-height: 12px; text-transform: uppercase; } .sidebar-content { height: calc(100% - 60px); -webkit-overflow-scrolling: touch; overflow-scrolling: touch; overflow-x: hidden; overflow-y: auto; padding: 10px 20px 10px 10px; } .sidebar-alt > .sidebar-content { padding-right: 10px; padding-left: 20px; } .sidebar-scrollable { border-bottom: 1px solid rgba(0,0,0,0.15); height: auto; max-height: calc(50% - 60px); -webkit-overflow-scrolling: touch; overflow-scrolling: touch; overflow-y: auto; } /* # Media Queries ================================================== */ @media only screen and (max-width: 1365px) { .sidebar { min-width: 250px; width: 250px; } } @media only screen and (max-width: 1199px) { .sidebar { min-width: 220px; width: 220px; } } @media only screen and (max-width: 959px) { .sidebar { display: none; } }
Version data entries
6 entries across 6 versions & 1 rubygems