mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
27 lines
515 B
SCSS
27 lines
515 B
SCSS
// --------------------------------------------------
|
|
// Banner
|
|
// --------------------------------------------------
|
|
|
|
#banner {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background: scale-color($tertiary, $lightness: 90%);
|
|
@include box-shadow(0 1px 2px scale-color($tertiary, $lightness: 70%));
|
|
max-width: 1090px;
|
|
z-index: 501;
|
|
|
|
&.overlay {
|
|
position: fixed;
|
|
}
|
|
|
|
.close {
|
|
font-size: 25px !important;
|
|
margin-top: -10px !important;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|