2015-02-24 09:38:30 -05: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 {
|
2016-04-29 11:45:58 -04:00
|
|
|
.footer-feedback {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-02-24 09:38:30 -05:00
|
|
|
nav {
|
2016-04-28 15:31:38 -04:00
|
|
|
h3 {
|
|
|
|
font-size: 21px;
|
|
|
|
}
|
|
|
|
|
2015-02-24 09:38:30 -05:00
|
|
|
padding: $unit * 6;
|
2015-03-05 00:39:57 -05:00
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
@include respond-to('mobile') {
|
2015-03-05 00:39:57 -05:00
|
|
|
padding: ($unit * 3) 0px;
|
|
|
|
}
|
2015-02-24 09:38:30 -05:00
|
|
|
}
|
|
|
|
|
2015-02-27 00:39:19 -05:00
|
|
|
.logo-inverse-large {
|
2016-09-06 15:54:23 -04:00
|
|
|
background: url('/resources/images/logos/inverse/shield/shield-large.png') 0px 0px / contain no-repeat;
|
2015-03-03 01:38:35 -05:00
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2016-09-06 15:54:23 -04:00
|
|
|
max-width: 100%;
|
2015-03-05 00:39:57 -05:00
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
@include respond-to('mobile') {
|
2015-03-05 00:39:57 -05:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2016-04-26 15:01:19 -04:00
|
|
|
font-size: 20px;
|
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
@include respond-to('mobile') {
|
2015-03-05 00:39:57 -05:00
|
|
|
margin-bottom: $unit;
|
|
|
|
}
|
2015-02-27 00:39:19 -05:00
|
|
|
}
|
|
|
|
|
2015-02-24 09:38:30 -05:00
|
|
|
ul {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
list-style-type: none;
|
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
@include respond-to('mobile') {
|
2015-03-05 00:39:57 -05:00
|
|
|
margin-bottom: $unit * 5;
|
|
|
|
}
|
|
|
|
|
2015-02-24 09:38:30 -05:00
|
|
|
li {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $snow;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
@include respond-to('mobile') {
|
2015-03-05 00:39:57 -05: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 09:38:30 -05:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2016-09-12 11:34:29 -04:00
|
|
|
text-align: left;
|
|
|
|
padding: ($unit * 2) ($unit * 6);
|
2015-02-24 09:38:30 -05:00
|
|
|
|
2016-09-23 02:58:06 -04:00
|
|
|
@include respond-to('mobile') {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2016-09-21 10:11:12 -04:00
|
|
|
a {
|
2016-09-21 09:32:11 -04:00
|
|
|
color: $snow;
|
2016-09-21 10:11:12 -04:00
|
|
|
}
|
2015-02-24 09:38:30 -05:00
|
|
|
|
2015-04-06 09:41:08 -04:00
|
|
|
.styleguide-trigger {
|
2016-09-23 13:44:14 -04:00
|
|
|
color: $darkgrey;
|
2016-09-21 09:32:11 -04:00
|
|
|
text-decoration: none;
|
|
|
|
float: right;
|
2016-09-23 13:44:14 -04:00
|
|
|
transition: color .3s;
|
2016-09-12 11:34:29 -04:00
|
|
|
|
2016-09-21 09:32:11 -04:00
|
|
|
@include respond-to('mobile') {
|
|
|
|
display: block;
|
|
|
|
margin-top: $unit;
|
|
|
|
font-size: 18px;
|
|
|
|
float: none;
|
2016-09-12 11:34:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2016-09-23 13:44:14 -04:00
|
|
|
color: $red-600;
|
2016-09-12 11:34:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon-favorite {
|
2016-09-21 09:32:11 -04:00
|
|
|
line-height: 20px;
|
2016-09-12 11:34:29 -04:00
|
|
|
}
|
2015-02-24 09:38:30 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-06 15:54:23 -04:00
|
|
|
}
|