2017-04-13 17:59:37 +01:00
|
|
|
/**
|
|
|
|
* Banner area styles
|
|
|
|
*
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2017
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#banner {
|
|
|
|
position: absolute;
|
|
|
|
height: 30px;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 30px;
|
|
|
|
border-bottom: 1px solid $primaryBorderColour;
|
|
|
|
color: $bannerFontColour;
|
|
|
|
background-color: $bannerBgColour;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-right {
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#banner img {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
margin-left: 8px;
|
2017-04-15 20:46:57 +01:00
|
|
|
}
|