115 lines
1.9 KiB
SCSS
Raw Normal View History

2015-02-24 06:38:30 -08:00
/*
* Main Site Footer
*
* This module contains styles for the main site footer. The
* footer contains a launchpad (lists of links) and general
* copyright and licensing information found at the bottom
* of each page
*/
.main-footer {
.footer-feedback {
cursor: pointer;
}
2015-02-24 06:38:30 -08:00
nav {
h3 {
font-size: 21px;
}
2015-02-24 06:38:30 -08:00
padding: $unit * 6;
2015-03-04 21:39:57 -08:00
@include respond-to('mobile') {
2015-03-04 21:39:57 -08:00
padding: ($unit * 3) 0px;
}
2015-02-24 06:38:30 -08:00
}
2015-02-26 21:39:19 -08:00
.logo-inverse-large {
background: url('/resources/images/logos/inverse/shield/shield-large.png') 0px 0px / contain no-repeat;
2015-03-02 22:38:35 -08:00
height: 200px;
width: 200px;
max-width: 100%;
2015-03-04 21:39:57 -08:00
@include respond-to('mobile') {
2015-03-04 21:39:57 -08:00
display: none;
}
}
h3 {
font-size: 20px;
@include respond-to('mobile') {
2015-03-04 21:39:57 -08:00
margin-bottom: $unit;
}
2015-02-26 21:39:19 -08:00
}
2015-02-24 06:38:30 -08:00
ul {
padding: 0px;
margin: 0px;
list-style-type: none;
@include respond-to('mobile') {
2015-03-04 21:39:57 -08:00
margin-bottom: $unit * 5;
}
2015-02-24 06:38:30 -08:00
li {
margin: 0px;
}
a {
color: $snow;
text-decoration: none;
@include respond-to('mobile') {
2015-03-04 21:39:57 -08:00
display: block;
text-decoration: none;
padding: 0px ($unit * 2);
margin-bottom: $unit;
border-radius: 3px;
line-height: $unit * 5;
font-size: 14px;
}
2015-02-24 06:38:30 -08:00
&:hover {
text-decoration: underline;
opacity: 1;
}
}
}
footer {
text-align: left;
padding: ($unit * 2) ($unit * 6);
2015-02-24 06:38:30 -08:00
2016-09-23 08:58:06 +02:00
@include respond-to('mobile') {
text-align: center;
}
2016-09-21 16:11:12 +02:00
a {
2016-09-21 15:32:11 +02:00
color: $snow;
2016-09-21 16:11:12 +02:00
}
2015-02-24 06:38:30 -08:00
2015-04-06 06:41:08 -07:00
.styleguide-trigger {
color: $darkgrey;
2016-09-21 15:32:11 +02:00
text-decoration: none;
float: right;
transition: color .3s;
2016-09-21 15:32:11 +02:00
@include respond-to('mobile') {
display: block;
margin-top: $unit;
font-size: 18px;
float: none;
}
&:hover {
color: $red-600;
}
.icon-favorite {
2016-09-21 15:32:11 +02:00
line-height: 20px;
}
2015-02-24 06:38:30 -08:00
}
}
}