2020-03-27 20:59:38 +00:00
|
|
|
.public-layout {
|
|
|
|
.footer {
|
|
|
|
display: flex;
|
|
|
|
padding: 40px 0;
|
|
|
|
font-size: 12px;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: auto;
|
2020-06-01 00:22:08 +00:00
|
|
|
color: #fff;
|
|
|
|
background-color: rgba(0, 0, 0, 0.15);
|
2020-03-27 20:59:38 +00:00
|
|
|
|
2020-05-29 00:58:37 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2020-03-27 20:59:38 +00:00
|
|
|
padding: 40px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-container {
|
|
|
|
display: flex;
|
|
|
|
width: 960px;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
|
2020-05-29 00:58:37 +00:00
|
|
|
@media screen and (max-width: 1024px) {
|
2020-03-27 20:59:38 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-05-29 00:58:37 +00:00
|
|
|
@media screen and (max-width: 767px) {
|
2020-03-27 20:59:38 +00:00
|
|
|
flex-direction: column-reverse;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 8px;
|
2020-06-07 03:55:00 +00:00
|
|
|
color: var(--primary-text-color--faint);
|
2020-03-27 20:59:38 +00:00
|
|
|
font-size: 1.6rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.copyright {
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
li {
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2020-06-01 00:22:08 +00:00
|
|
|
color: #fff;
|
2020-03-27 20:59:38 +00:00
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 10px 4px;
|
|
|
|
margin-left: 10px;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 00:58:37 +00:00
|
|
|
@media screen and (max-width: 767px) {
|
2020-03-27 20:59:38 +00:00
|
|
|
.copyright {
|
|
|
|
margin: 0 auto auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0 auto 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|