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 {
|
2023-04-19 21:21:04 +12:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2023-04-18 21:05:01 +12:00
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 4px;
|
2023-04-17 12:59:00 +12:00
|
|
|
line-height: var(--banner-height);
|
2017-04-24 23:59:35 +01:00
|
|
|
color: var(--banner-font-colour);
|
|
|
|
background-color: var(--banner-bg-colour);
|
2023-04-18 21:05:01 +12:00
|
|
|
border-bottom: 1px solid var(--primary-border-colour);
|
2017-04-13 17:59:37 +01:00
|
|
|
}
|
|
|
|
|
2018-06-17 14:09:52 +01:00
|
|
|
#banner i {
|
|
|
|
vertical-align: middle;
|
2017-07-03 15:18:47 +00:00
|
|
|
padding-right: 10px;
|
2017-04-15 20:46:57 +01:00
|
|
|
}
|
2018-08-20 00:04:49 +01:00
|
|
|
|
2023-04-19 21:21:04 +12:00
|
|
|
|
|
|
|
/* Notice wrapper */
|
|
|
|
#notice-wrapper {
|
|
|
|
text-align: center;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Banner links ( options, about / support ) */
|
2023-04-18 21:05:01 +12:00
|
|
|
.banner-link {
|
2019-03-20 10:23:09 +00:00
|
|
|
color: var(--banner-url-colour);
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:05:01 +12:00
|
|
|
.banner-link:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2023-08-16 16:42:05 +12:00
|
|
|
@media only screen and (min-width: 1024px){
|
2023-04-18 21:05:01 +12:00
|
|
|
.banner-link:hover span {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-19 21:21:04 +12:00
|
|
|
|
|
|
|
|