30 lines
515 B
SCSS
30 lines
515 B
SCSS
// --------------------------------------------------
|
|
// Banner
|
|
// --------------------------------------------------
|
|
|
|
#banner {
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
background: $tertiary-low;
|
|
box-shadow: 0 1px 2px $tertiary-medium;
|
|
color: darken($tertiary, 45%);
|
|
z-index: 1001;
|
|
overflow: auto;
|
|
|
|
&.overlay {
|
|
position: fixed;
|
|
}
|
|
|
|
.close {
|
|
font-size: 1.786em;
|
|
margin-top: -5px;
|
|
color: $tertiary-medium;
|
|
padding-left: 5px;
|
|
float: right;
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|