Sha256: 66b71e5328062e3093179428e9c9b8b967d7bbc567e2cfb441bb00cb52e836e1
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
#notifications { position: fixed; top: 10px; right: 15px; } #notifications li { margin-bottom: 5px; list-style: none; } .notification { position: relative; max-width: 600px; min-width: 250px; border: 1px solid #eee; background: white; z-index: 100; } .notification .content { padding: 15px 20px; } .notification h1 { margin: 0 0 5px 0; font-size: 16px; font-weight: normal; } .notification p { margin: 0; padding: 0; font-size: .9em; } .notification .close { position: absolute; top: 5px; right: 10px; text-decoration: none; color: #888; display: none; } .notification.closable .close { display: block; } .notification .close:hover { color: black; } .notification .close:active { margin-top: 1px; } /* close */ .notification .close { position: absolute; top: 3px; right: 10px; text-decoration: none; color: #888; font-size: 16px; font-weight: bold; display: none; } /* slide */ .notification.slide { -webkit-transition: opacity 300ms, top 300ms; -moz-transition: opacity 300ms, top 300ms; } .notification.slide.hide { opacity: 0; top: -500px; } /* fade */ .notification.fade { -webkit-transition: opacity 300ms; -moz-transition: opacity 300ms; } .notification.fade.hide { opacity: 0; } /* scale */ .notification.scale { -webkit-transition: -webkit-transform 300ms; -moz-transition: -moz-transform 300ms; -webkit-transform: scale(1); -moz-transform: scale(1); } .notification.scale.hide { -webkit-transform: scale(0); -moz-transform: scale(0); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
uikit-rails-0.0.2 | vendor/assets/stylesheets/ui.notification.css |