2022-10-01 19:06:57 +00:00
|
|
|
.citizen-footer {
|
2022-11-01 00:34:00 +00:00
|
|
|
padding: var( --space-xxl ) var( --padding-page );
|
|
|
|
margin-top: var( --space-xxl );
|
2022-10-01 19:06:57 +00:00
|
|
|
// Reserve space for header
|
|
|
|
margin-bottom: var( --header-size );
|
|
|
|
background-color: var( --color-surface-2 );
|
2021-01-11 16:45:52 +00:00
|
|
|
clear: both;
|
2022-10-01 19:06:57 +00:00
|
|
|
color: var( --color-base--subtle );
|
2021-01-11 16:45:52 +00:00
|
|
|
direction: ltr;
|
2022-10-01 19:06:57 +00:00
|
|
|
font-size: 0.875rem;
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
max-width: var( --width-layout--extended );
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
&__content,
|
|
|
|
&__bottom {
|
2020-06-07 06:07:30 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2022-10-01 19:06:57 +00:00
|
|
|
padding: var( --space-md ) 0;
|
|
|
|
gap: var( --space-md );
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
&__bottom {
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-top: 1px solid var( --border-color-base );
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
&__siteinfo {
|
2020-06-07 06:07:30 +00:00
|
|
|
display: flex;
|
2022-10-01 19:06:57 +00:00
|
|
|
max-width: 90ch;
|
2020-06-07 06:07:30 +00:00
|
|
|
flex-direction: column;
|
2022-11-01 00:34:00 +00:00
|
|
|
gap: var( --space-xs );
|
2022-10-01 19:06:57 +00:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
line-height: var( --line-height );
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
a {
|
|
|
|
color: var( --color-base--emphasized );
|
2022-10-23 23:40:19 +00:00
|
|
|
font-weight: var( --font-weight-medium );
|
2022-10-01 19:06:57 +00:00
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
2022-10-01 19:06:57 +00:00
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
#footer {
|
2020-06-07 06:07:30 +00:00
|
|
|
&-sitetitle {
|
2022-10-01 19:11:07 +00:00
|
|
|
color: var( --color-base--emphasized );
|
2022-10-02 05:05:41 +00:00
|
|
|
font-size: 1.25rem;
|
2021-03-05 16:40:55 +00:00
|
|
|
|
|
|
|
img.mw-logo-wordmark {
|
2022-12-04 03:50:12 +00:00
|
|
|
max-height: 54px;
|
2021-03-05 16:40:55 +00:00
|
|
|
filter: invert( 1 ) hue-rotate( 180deg );
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-places {
|
2022-10-01 19:06:57 +00:00
|
|
|
ul {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
a {
|
2020-06-07 06:07:30 +00:00
|
|
|
display: block;
|
2022-11-01 00:34:00 +00:00
|
|
|
padding: var( --space-xs ) var( --space-md );
|
2022-10-01 19:06:57 +00:00
|
|
|
border-radius: var( --border-radius--small );
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: var( --background-color-quiet--hover );
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2022-10-01 19:06:57 +00:00
|
|
|
&:active {
|
|
|
|
background-color: var( --background-color-quiet--active );
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-tagline {
|
2022-11-16 23:25:02 +00:00
|
|
|
padding: var( --space-xs ) 0;
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-icons {
|
|
|
|
display: flex;
|
2022-10-01 19:06:57 +00:00
|
|
|
|
|
|
|
ul {
|
2022-11-01 00:34:00 +00:00
|
|
|
gap: var( --space-xs );
|
2022-10-01 19:06:57 +00:00
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
|
2020-06-09 17:23:28 +00:00
|
|
|
li {
|
|
|
|
display: flex; // Horizontally aligned with there are two icons in the same li
|
|
|
|
}
|
2020-06-23 19:51:05 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2020-06-07 06:07:30 +00:00
|
|
|
}
|
2020-06-08 22:09:32 +00:00
|
|
|
}
|
2022-10-01 19:06:57 +00:00
|
|
|
|
2022-10-01 20:15:40 +00:00
|
|
|
@media ( min-width: @width-breakpoint-desktop ) {
|
|
|
|
.citizen-footer {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2022-10-02 05:05:41 +00:00
|
|
|
|
|
|
|
#footer-sitetitle {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
2022-10-01 20:15:40 +00:00
|
|
|
}
|