discourse/app/assets/stylesheets/common/components/banner.scss

30 lines
587 B
SCSS
Raw Normal View History

2014-06-18 14:04:10 -04:00
// --------------------------------------------------
// Banner
// --------------------------------------------------
2015-03-30 04:42:14 -04:00
#banner {
padding: 10px;
border-radius: 5px;
background: scale-color($tertiary, $lightness: 90%);
box-shadow: 0 1px 2px scale-color($tertiary, $lightness: 70%);
color: darken($tertiary, 45%);
z-index: 1001;
overflow: auto;
&.overlay {
position: fixed;
}
2014-06-18 14:04:10 -04:00
.close {
2016-02-22 18:57:31 -05:00
font-size: 1.786em;
margin-top: -5px;
2016-02-22 18:57:31 -05:00
color: scale-color($tertiary, $lightness: 70%);
padding-left: 5px;
float: right;
2014-06-18 14:04:10 -04:00
}
2014-06-18 14:04:10 -04:00
.meta {
display: none;
}
}