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

113 lines
2.2 KiB
SCSS
Raw Normal View History

2015-01-16 14:39:31 +01:00
// Modular Showcase styling
.modular {
2015-01-19 18:04:29 +01:00
.footer {
2015-01-20 12:31:35 +01:00
font-size: $core-font-size - 0.1rem;
2015-01-19 18:04:29 +01:00
background: #333;
width: 100%;
@extend .padding-horiz;
padding-top: 4rem;
@include clearfix;
a {
color: $core-text;
}
h4 {
line-height: 2rem;
margin-top: 0;
text-align: left;
color: $white;
}
hr {
border-color: transparentize($core-text, 0.5);
}
.footer-items {
margin-top: 2rem;
@supports not (flex-wrap: wrap) {
overflow: hidden;
}
@include clearfix;
}
.footer-module {
&.large {
width: 40%;
}
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;
2015-01-16 14:39:31 +01:00
width: 100%;
2015-01-19 18:04:29 +01:00
}
span {
2015-01-16 14:39:31 +01:00
@include clearfix;
2015-01-19 18:04:29 +01:00
}
strong {
color: $white;
}
2015-01-19 12:43:44 +01:00
}
.logo {
2015-01-19 18:04:29 +01:00
border-bottom: 0 none;
@include clearfix;
color: $white;
h3 a {
2015-01-19 12:43:44 +01:00
color: $white;
2015-01-19 18:04:29 +01:00
}
2015-01-19 12:43:44 +01:00
}
.quickmenu {
2015-01-19 18:04:29 +01:00
margin: 0;
padding: 0;
list-style: none;
i {
padding-right: 0.5rem;
color: $white;
font-size: 0.7rem;
}
2015-01-16 14:39:31 +01:00
}
2015-01-19 12:43:44 +01:00
.footer-modules {
2015-01-19 18:04:29 +01:00
@include clearfix;
display: block;
padding-bottom: 1.5rem;
}
.footer-copyright {
width: 50%;
font-family: $font-family-header;
display: inline-block;
float: left;
text-align: left;
text-transform: uppercase;
}
.footer-menu {
float: right;
display: inline-block;
width: 50%;
text-align: right;
text-transform: uppercase;
font-family: $font-family-header;
ul {
2015-01-19 12:43:44 +01:00
margin: 0;
padding: 0;
list-style: none;
li {
2015-01-19 18:04:29 +01:00
display: inline-block;
&:after {
content: "/";
margin: 0 0.5rem;
2015-01-19 12:43:44 +01:00
display: inline-block;
2015-01-19 18:04:29 +01:00
}
&:last-child {
2015-01-19 12:43:44 +01:00
&:after {
2015-01-19 18:04:29 +01:00
display: none;
2015-01-19 12:43:44 +01:00
}
2015-01-19 18:04:29 +01:00
}
2015-01-19 12:43:44 +01:00
}
2015-01-19 18:04:29 +01:00
}
2015-01-19 12:43:44 +01:00
}
2015-01-19 18:04:29 +01:00
}
2015-01-16 14:39:31 +01:00
}