Sha256: 3b09bccb363c15b647bb486b5bd9e25af1f9fbdef318cb6a51bbe741c79bab41
Contents?: true
Size: 1.59 KB
Versions: 12
Compression:
Stored size: 1.59 KB
Contents
/* Table of Contents ================================================== # Sidebar # Media Queries */ /* # Sidebar ================================================== */ .sidebar { background: rgba(255,255,255,1); border-left: 1px solid rgba(225,232,237,1); box-shadow: inset 1px 0 3px rgba(225,232,237,1); box-sizing: border-box; height: 100%; min-width: 280px; position: fixed; width: 280px; } .sidebar-alt { border-right: 1px solid rgba(225,232,237,1); border-left: 0; box-shadow: inset -1px 0 3px rgba(225,232,237,1); } .sidebar-header { border-bottom: 1px solid rgba(225,232,237,1); font-size: 12px; line-height: 12px; padding: 10px 20px 8px 10px; } .sidebar-alt > .sidebar-header { padding-right: 10px; padding-left: 20px; } .sidebar-header > h6 { color: rgba(43,50,53,1); font-size: 12px; font-weight: normal; letter-spacing: 1px; line-height: 12px; text-transform: uppercase; } .sidebar-content { height: calc(100% - 51px); 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(225,232,237,1); height: auto; max-height: calc(50% - 51px); 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
12 entries across 12 versions & 1 rubygems