mirror of
https://github.com/discourse/discourse.git
synced 2025-01-25 01:31:02 +08:00
20 lines
437 B
SCSS
20 lines
437 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%));
|
|
|
|
.close {
|
|
font-size: 25px !important;
|
|
margin-top: -10px !important;
|
|
}
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|