Sha256: 6b65e1680e7846b6e94c6c393293fe49b3113e798f9a270669489f9177e951ae
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
/* Table of Contents ================================================== #Modal #Media Queries */ /* #Modal ================================================== */ .modal-backdrop { background-color: rgba(0,0,0,1); bottom: 0; left: 0; position: fixed; right: 0; top: 0; z-index: 1040; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop, .modal-backdrop.fade.in { opacity: 0.8; filter: alpha(opacity=80); } .modal { background-clip: padding-box; background-color: rgba(255,255,255,1); box-shadow: 0 0 3px rgba(0,0,0,1); left: 50%; margin-left: -280px; outline: none; position: fixed; top: 10%; width: 560px; z-index: 1050; } .modal.fade { -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; transition: opacity 0.3s linear, top 0.3s ease-out; top: -35%; } .modal.fade.in { top: 15%; } .modal-header { background-color: rgba(236,238,241,1); padding: 21px 15px 18px 15px; } .modal-header .close { margin-top: -3px; } .modal-header h3 { color: rgba(43,50,53,1); font-size: 17px; line-height: 17px; margin: 0; } .modal-body { border-top: 1px solid rgba(217,222,225,1); border-bottom: 1px solid rgba(227,232,235,1); max-height: 400px; overflow-y: auto; padding: 15px 18px; position: relative; } .modal-footer { background-color: rgba(246,247,249,1); margin-bottom: 0; padding: 10px 15px 10px 15px; text-align: right; } .modal-footer:before, .modal-footer:after { content: ""; display: table; line-height: 0; } .modal-footer:after { clear: both; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } /* #Media Queries ================================================== */ @media only screen and (max-width: 767px) { .modal { margin-left: -150px; width: 300px; } } @media only screen and (min-width: 480px) and (max-width: 767px) { .modal { margin-left: -210px; width: 420px; } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
quantum-0.0.10 | vendor/assets/stylesheets/modal.css.scss |
quantum-0.0.9 | vendor/assets/stylesheets/modal.css.scss |