mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
29 lines
522 B
SCSS
29 lines
522 B
SCSS
// --------------------------------------------------
|
|
// Banner
|
|
// --------------------------------------------------
|
|
|
|
#banner {
|
|
padding: 10px;
|
|
background: $tertiary-low;
|
|
box-shadow: 0 2px 4px -1px rgba(0,0,0, .25);
|
|
color: $primary;
|
|
z-index: 1001;
|
|
overflow: auto;
|
|
|
|
&.overlay {
|
|
position: fixed;
|
|
}
|
|
|
|
.close {
|
|
font-size: 1.786em;
|
|
margin-top: -5px;
|
|
color: dark-light-choose($primary-low-mid, $secondary-medium);
|
|
padding-left: 5px;
|
|
float: right;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|