2022-02-04 11:57:55 +00:00
|
|
|
@use 'sass:math';
|
2022-04-08 00:33:48 +00:00
|
|
|
@use 'sass:color';
|
2021-12-23 02:42:22 +00:00
|
|
|
|
2015-09-25 13:17:39 +00:00
|
|
|
header {
|
2022-04-29 11:59:52 +00:00
|
|
|
@apply w-text-primary w-mb-8;
|
|
|
|
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
padding-inline-start: 110px;
|
|
|
|
padding-inline-end: 20px;
|
2022-02-04 11:57:55 +00:00
|
|
|
|
|
|
|
a {
|
2022-04-08 16:36:47 +00:00
|
|
|
@apply w-text-primary w-underline;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
h1,
|
|
|
|
h2 {
|
2022-04-08 16:36:47 +00:00
|
|
|
@apply w-text-primary;
|
2022-02-04 11:57:55 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-04-29 11:59:52 +00:00
|
|
|
@apply w-h1;
|
|
|
|
position: relative;
|
2014-06-10 13:33:08 +00:00
|
|
|
|
2022-04-29 11:59:52 +00:00
|
|
|
> svg.icon {
|
|
|
|
position: absolute;
|
|
|
|
inset-inline-start: -1.5em;
|
|
|
|
top: 0.125em;
|
|
|
|
max-width: 1em;
|
|
|
|
max-height: 1em;
|
|
|
|
vertical-align: text-top;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-04-08 16:36:47 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
margin-inline-start: 0.3125rem;
|
2022-04-29 11:59:52 +00:00
|
|
|
font-weight: 400;
|
2022-04-08 16:36:47 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col {
|
|
|
|
float: left;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 2em;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.left {
|
|
|
|
float: left;
|
2022-04-08 16:36:47 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.hasform &:first-child {
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
float: none;
|
2017-08-18 00:28:38 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.right {
|
2022-03-15 13:21:06 +00:00
|
|
|
text-align: end;
|
2022-02-04 11:57:55 +00:00
|
|
|
float: right;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-03-07 17:06:19 +00:00
|
|
|
.search-form .icon {
|
2022-04-29 11:59:52 +00:00
|
|
|
@include svg-icon(1.2rem);
|
|
|
|
color: theme('colors.primary.DEFAULT');
|
2022-03-07 17:06:19 +00:00
|
|
|
position: absolute;
|
2022-04-29 11:59:52 +00:00
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
inset-inline-start: 0.7em;
|
2022-03-07 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
// For case where content below header should merge with it
|
|
|
|
&.merged {
|
|
|
|
margin-bottom: 0;
|
2022-04-29 11:59:52 +00:00
|
|
|
padding-bottom: 1rem;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2020-06-15 17:02:32 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.no-border {
|
|
|
|
border: 0;
|
2021-12-21 11:13:08 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
@include media-breakpoint-down(xs) {
|
|
|
|
// To all hamburger menu to be visible
|
2022-03-15 13:21:06 +00:00
|
|
|
padding-inline-start: 1.6em;
|
|
|
|
padding-inline-end: 1.6em;
|
2022-02-04 11:57:55 +00:00
|
|
|
padding-top: 11px;
|
2021-12-21 11:13:08 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.nice-padding {
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-start: -$desktop-nice-padding;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 07:28:43 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.merged.no-border {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2020-06-15 17:02:32 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.no-v-padding {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2016-10-27 07:28:43 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.button {
|
|
|
|
background-color: $color-teal-darker;
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: $color-teal-dark;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-04-29 11:59:52 +00:00
|
|
|
.button-secondary {
|
|
|
|
color: $color-teal-darker;
|
|
|
|
background-color: transparent;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-04-29 11:59:52 +00:00
|
|
|
label {
|
|
|
|
@include visuallyhidden();
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2018-01-08 14:09:54 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.error-message {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.fields {
|
|
|
|
margin-top: -0.5em;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
li {
|
|
|
|
padding-bottom: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.field {
|
|
|
|
padding: 0;
|
2019-05-23 14:55:14 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2019-05-23 14:55:14 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.field-content {
|
|
|
|
width: auto;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.last-updated {
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2014-05-13 16:03:31 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
li {
|
|
|
|
display: inline;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 2em;
|
2014-05-13 16:03:31 +00:00
|
|
|
}
|
2021-08-18 14:55:11 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.avatar.small {
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-start: 0;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2021-08-18 14:55:11 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
a {
|
|
|
|
font-weight: bold;
|
2021-08-18 14:55:11 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 07:28:14 +00:00
|
|
|
// Media for Windows High Contrast
|
|
|
|
@media (forced-colors: $media-forced-colours) {
|
2022-02-04 11:57:55 +00:00
|
|
|
header .field-content {
|
|
|
|
border: 0.1em solid $system-color-link-text;
|
|
|
|
}
|
2021-10-06 07:28:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 21:46:42 +00:00
|
|
|
@include media-breakpoint-up(sm) {
|
2022-02-04 11:57:55 +00:00
|
|
|
header {
|
2022-04-29 11:59:52 +00:00
|
|
|
padding-top: 1.5rem;
|
|
|
|
padding-inline-start: 90px;
|
|
|
|
padding-inline-end: 90px;
|
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.left {
|
|
|
|
float: left;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&:first-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.second {
|
|
|
|
clear: none;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.right,
|
|
|
|
.left {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
h1.icon:before {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col3 {
|
|
|
|
@include column(3);
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col3.actionbutton {
|
|
|
|
width: auto;
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col6 {
|
|
|
|
@include column(6);
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col9 {
|
|
|
|
@include column(9);
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
}
|