diff options
Diffstat (limited to 'semantic/dist/components/nag.css')
| -rw-r--r-- | semantic/dist/components/nag.css | 145 |
1 files changed, 0 insertions, 145 deletions
diff --git a/semantic/dist/components/nag.css b/semantic/dist/components/nag.css deleted file mode 100644 index ceacd53..0000000 --- a/semantic/dist/components/nag.css +++ /dev/null @@ -1,145 +0,0 @@ -/*! - * # Fomantic-UI - Nag - * http://github.com/fomantic/Fomantic-UI/ - * - * - * Released under the MIT license - * http://opensource.org/licenses/MIT - * - */ - - -/******************************* - Nag -*******************************/ - -.ui.nag { - display: none; - opacity: 0.95; - position: relative; - top: 0; - left: 0; - z-index: 999; - min-height: 0; - width: 100%; - margin: 0; - padding: 0.75em 1em; - background: #555555; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); - font-size: 1rem; - text-align: center; - color: rgba(0, 0, 0, 0.87); - border-radius: 0 0 0.28571429rem 0.28571429rem; - transition: 0.2s background ease; -} -a.ui.nag { - cursor: pointer; -} -.ui.nag > .title { - display: inline-block; - margin: 0 0.5em; - color: #FFFFFF; -} -.ui.nag > .close.icon { - cursor: pointer; - opacity: 0.4; - position: absolute; - top: 50%; - right: 1em; - font-size: 1em; - margin: -0.5em 0 0; - color: #FFFFFF; - transition: opacity 0.2s ease; -} - - -/******************************* - States -*******************************/ - - -/* Hover */ -.ui.nag:hover { - background: #555555; - opacity: 1; -} -.ui.nag .close:hover { - opacity: 1; -} - - -/******************************* - Variations -*******************************/ - - -/*-------------- - Static ----------------*/ - -.ui.overlay.nag { - position: absolute; - display: block; -} - -/*-------------- - Fixed ----------------*/ - -.ui.fixed.nag { - position: fixed; -} - -/*-------------- - Bottom ----------------*/ - -.ui.bottom.nags, -.ui.bottom.nag { - border-radius: 0.28571429rem 0.28571429rem 0 0; - top: auto; - bottom: 0; -} - -/*-------------- - White ----------------*/ - -.ui.inverted.nags .nag, -.ui.inverted.nag { - background-color: #F3F4F5; - color: rgba(0, 0, 0, 0.85); -} -.ui.inverted.nags .nag .close, -.ui.inverted.nags .nag .title, -.ui.inverted.nag .close, -.ui.inverted.nag .title { - color: rgba(0, 0, 0, 0.4); -} - - -/******************************* - Groups -*******************************/ - -.ui.nags .nag { - border-radius: 0 !important; -} -.ui.nags .nag:last-child { - border-radius: 0 0 0.28571429rem 0.28571429rem; -} -.ui.bottom.nags .nag:last-child { - border-radius: 0.28571429rem 0.28571429rem 0 0; -} - - -/******************************* - Theme Overrides -*******************************/ - - - -/******************************* - User Overrides -*******************************/ - |