Sha256: 8e84d88a1431400758cdac2e3a94115aeb77798b8ad90c37d53d441b43b2c6bb
Contents?: true
Size: 1.6 KB
Versions: 2
Compression:
Stored size: 1.6 KB
Contents
/* Table of Contents ================================================== # Alert # Application # Colors # Media Queries */ /* # Alert ================================================== */ .alert-fixed { left: 0; position: fixed; right: 0; top: 0; z-index: 1040; } .alert { background: rgba(85,94,113,1); border-bottom: 2px solid rgba(0,0,0,0.1); box-sizing: border-box; color: rgba(255,255,255,1); display: block; font-size: 16px; line-height: 20px; margin: 0; padding: 10px 20px 9px 20px; width: 100%; } .alert > a { color: rgba(255,255,255,1); border-bottom: 1px dotted rgba(255,255,255,1); font-style: italic; } .alert-lined { border: 2px solid rgba(0,0,0,0.1); } .alert-close { border: 0 !important; color: rgba(255,255,255,1) !important; float: right; font-size: 18px; line-height: 24px; } /* # Application ================================================== */ .alert.alert-app { width: calc(100% - 280px); } /* # Colors ================================================== */ .alert-green, .alert-success { background: rgba(117,210,24,1); } .alert-orange, .alert-warning { background: rgba(255,131,0,1); } .alert-red, .alert-error, .alert-alert { background: rgba(240,35,17,1); } .alert-black, .alert-system { background: rgba(52,64,68,1); } /* # Media Queries ================================================== */ @media only screen and (max-width: 1365px) { .alert.alert-app { width: calc(100% - 250px); } } @media only screen and (max-width: 1199px) { .alert.alert-app { width: calc(100% - 220px); } } @media only screen and (max-width: 959px) { .alert.alert-app { width: 100%; } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_frontend-5.0.1 | vendor/assets/stylesheets/alert.scss |
active_frontend-5.0.0 | vendor/assets/stylesheets/alert.scss |