scratch-www/src/views/preview/banner.scss

45 lines
776 B
SCSS
Raw Normal View History

@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 {
2018-11-20 12:16:10 -05:00
padding: .5rem 0;
}
.banner-button {
background-color: $ui-orange;
font-size: .875rem;
}
.banner-danger .banner-button {
background-color: $ui-red;
}