mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-07 04:52:13 -05:00
44 lines
776 B
SCSS
44 lines
776 B
SCSS
@import "../../colors";
|
|
|
|
$navigation-height: 50px;
|
|
|
|
.banner-outer {
|
|
display: flex;
|
|
background-color: $ui-orange-25percent;
|
|
width: 100%;
|
|
min-height: 3.75rem;
|
|
overflow: hidden;
|
|
color: $ui-orange;
|
|
font-size: .875rem;
|
|
font-weight: bold;
|
|
align-self: center;
|
|
}
|
|
|
|
.banner-outer.banner-danger {
|
|
background-color: $ui-red-25percent;
|
|
color: $ui-red;
|
|
}
|
|
|
|
.banner-outer.banner-success {
|
|
background-color: $ui-green-35percent;
|
|
color: $ui-mint-green;
|
|
}
|
|
|
|
.banner-inner {
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.banner-text {
|
|
padding: .5rem 0;
|
|
}
|
|
|
|
.banner-button {
|
|
background-color: $ui-orange;
|
|
font-size: .875rem;
|
|
}
|
|
|
|
.banner-danger .banner-button {
|
|
background-color: $ui-red;
|
|
}
|