hugo-whisper-theme/assets/scss/components/_sub-footer.scss

63 lines
1.3 KiB
SCSS
Raw Normal View History

2019-02-17 06:55:16 +00:00
.sub-footer {
2019-02-17 11:44:45 +00:00
background: #f4f5fb;
2019-02-17 06:55:16 +00:00
padding-top: 20px;
padding-bottom: 20px;
@include media-breakpoint-up(md) {
padding-top: 10px;
padding-bottom: 10px;
}
.sub-footer-inner {
display: flex;
flex-direction: column;
2019-02-17 11:44:45 +00:00
justify-content: flex-end;
2019-02-17 06:55:16 +00:00
@include media-breakpoint-up(md) {
flex-direction: row;
}
ul {
list-style: none;
margin: 0;
padding: 0;
li {
list-style: none;
display: block;
2019-02-17 11:44:45 +00:00
color: #333;
2019-02-17 06:55:16 +00:00
font-size: 0.9rem;
line-height: 1.8;
2019-02-17 11:44:45 +00:00
font-weight: bold;
2019-02-17 06:55:16 +00:00
strong {
font-weight: bold;
color: #ffffff;
}
a {
2019-02-17 11:44:45 +00:00
color: #333;
2019-02-17 06:55:16 +00:00
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
span {
display: inline-block;
height: 40px;
padding: 10px 0 10px 8px;
font-weight: bold;
color: #ffffff;
}
&.zerostatic {
a {
2019-02-17 11:44:45 +00:00
color: #333;
2019-02-17 06:55:16 +00:00
}
}
}
@include media-breakpoint-up(sm) {
li {
display: inline-block;
margin-left: 10px;
&:first-of-type {
margin-left: 0;
}
}
}
}
}
}