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 {
|
|
|
|
nav {
|
|
|
|
padding: $unit * 6;
|
2015-03-05 00:39:57 -05:00
|
|
|
|
|
|
|
@media handheld and (max-width: $phone-breakpoint),
|
|
|
|
screen and (max-device-width: $phone-breakpoint),
|
|
|
|
screen and (max-width: $tablet-breakpoint) {
|
|
|
|
padding: ($unit * 3) 0px;
|
|
|
|
}
|
2015-02-24 09:38:30 -05:00
|
|
|
}
|
|
|
|
|
2015-02-27 00:39:19 -05:00
|
|
|
.logo-inverse-large {
|
2015-03-03 01:38:35 -05:00
|
|
|
background: url('/resources/images/logos/inverse/shield/shield-large.png') 0px 0px no-repeat;
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2015-03-05 00:39:57 -05:00
|
|
|
|
|
|
|
@media handheld and (max-width: $phone-breakpoint),
|
|
|
|
screen and (max-device-width: $phone-breakpoint),
|
|
|
|
screen and (max-width: $tablet-breakpoint) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@media handheld and (max-width: $phone-breakpoint),
|
|
|
|
screen and (max-device-width: $phone-breakpoint),
|
|
|
|
screen and (max-width: $tablet-breakpoint) {
|
|
|
|
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;
|
|
|
|
|
2015-03-05 00:39:57 -05:00
|
|
|
@media handheld and (max-width: $phone-breakpoint),
|
|
|
|
screen and (max-device-width: $phone-breakpoint),
|
|
|
|
screen and (max-width: $tablet-breakpoint) {
|
|
|
|
margin-bottom: $unit * 5;
|
|
|
|
}
|
|
|
|
|
2015-02-24 09:38:30 -05:00
|
|
|
li {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $snow;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2015-03-05 00:39:57 -05:00
|
|
|
@media handheld and (max-width: $phone-breakpoint),
|
|
|
|
screen and (max-device-width: $phone-breakpoint),
|
|
|
|
screen and (max-width: $tablet-breakpoint) {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 0px ($unit * 2);
|
|
|
|
background: $steel;
|
|
|
|
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 {
|
|
|
|
text-align: center;
|
|
|
|
padding: $unit * 2;
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|