grav-theme-libretic/scss/template/modular/_footer.scss

104 lines
2.1 KiB
SCSS
Raw Normal View History

2015-01-16 14:39:31 +01:00
// Modular Showcase styling
.modular {
.footer {
background: #333;
width: 100%;
@extend .padding-horiz;
padding-top: 4rem;
@include clearfix;
a, a:hover, h4 {
color: $white;
}
h4 {
line-height: 2rem;
margin-top: 0;
2015-01-16 17:53:46 +01:00
text-align: left;
2015-01-16 14:39:31 +01:00
}
.footer-items {
margin-top: 2rem;
@supports not (flex-wrap: wrap) {
overflow: hidden;
}
@include clearfix;
}
.footer-module {
2015-01-16 17:53:46 +01:00
&.large {
width: 40%;
2015-01-19 12:43:44 +01:00
}
display:block;
float: left;
width: 20%;
vertical-align: top;
padding-right: 2rem;
@include breakpoint(large-mobile-range) {
margin-top: 1rem;
width: 50%;
}
@include breakpoint(small-mobile-range) {
margin-top: 1rem;
width: 100%;
2015-01-16 14:39:31 +01:00
}
2015-01-19 12:43:44 +01:00
span {
2015-01-16 14:39:31 +01:00
@include clearfix;
2015-01-19 12:43:44 +01:00
}
strong {
color: $white;
}
}
.logo {
border-bottom: 0 none;
@include clearfix;
color: $white;
}
.quickmenu {
margin: 0;
padding: 0;
list-style: none;
i {
padding-right: 0.5rem;
2015-01-16 14:39:31 +01:00
color: $white;
}
2015-01-19 12:43:44 +01:00
li a {
color: $core-text;
}
2015-01-16 14:39:31 +01:00
}
2015-01-19 12:43:44 +01:00
.footer-modules {
@include clearfix;
display: block;
padding-bottom: 1.5rem;
}
.footer-copyright {
width: 50%;
display: inline-block;
float: left;
text-align: left;
}
.footer-menu {
float: right;
display: inline-block;
width: 50%;
text-align: right;
ul {
margin: 0;
padding: 0;
list-style: none;
li {
display: inline-block;
&:after {
content: "/";
margin: 0 0.5rem;
display: inline-block;
}
&:last-child {
&:after {
display: none;
}
}
}
}
}
}
2015-01-16 14:39:31 +01:00
}