Sha256: c7e4f8dd5867251878d673c6956d4afc64edf9fc3916e512168fb4bedd88aad5
Contents?: true
Size: 1.61 KB
Versions: 4
Compression:
Stored size: 1.61 KB
Contents
/* Table of Contents ================================================== # Sidebar # Media Queries */ /* # Sidebar ================================================== */ .sidebar { background: rgba(42,44,48,1); border-left: 4px 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.15); 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
4 entries across 4 versions & 1 rubygems