2018-04-16 00:33:54 +00:00
|
|
|
.footer {
|
2018-08-14 20:03:35 +00:00
|
|
|
flex: 0 0 auto;
|
2018-03-22 02:56:41 +00:00
|
|
|
|
2018-08-14 20:11:41 +00:00
|
|
|
&__link {
|
2018-03-22 02:56:41 +00:00
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2018-10-22 20:23:56 +00:00
|
|
|
|
|
|
|
&__wrapper {
|
2019-08-13 02:42:12 +00:00
|
|
|
max-width: @site-max-width;
|
2018-10-22 20:23:56 +00:00
|
|
|
max-width: var(--site-max-width);
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
font-size: .9em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
padding: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__background {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2019-08-13 02:42:12 +00:00
|
|
|
mask-image: linear-gradient(180deg, transparent 10%, @background-colour 100%);
|
|
|
|
-webkit-mask-image: linear-gradient(180deg, transparent 10%, @background-colour 100%);
|
2018-10-22 20:23:56 +00:00
|
|
|
mask-image: linear-gradient(180deg, transparent 10%, var(--background-colour) 100%);
|
|
|
|
-webkit-mask-image: linear-gradient(180deg, transparent 10%, var(--background-colour) 100%);
|
2019-08-13 02:42:12 +00:00
|
|
|
background: @background-pattern;
|
2018-10-22 20:23:56 +00:00
|
|
|
background: var(--background-pattern);
|
2019-08-13 02:42:12 +00:00
|
|
|
background-color: @header-accent-colour;
|
2018-10-30 22:30:49 +00:00
|
|
|
background-color: var(--header-accent-colour);
|
2018-10-22 20:23:56 +00:00
|
|
|
background-blend-mode: multiply;
|
|
|
|
}
|
2018-03-22 02:56:41 +00:00
|
|
|
}
|