sass-site/source/assets/css/regions/_contentinfo.scss

76 lines
1.2 KiB
SCSS
Raw Normal View History

2013-10-09 06:30:53 -04:00
.contentinfo {
2013-10-12 11:51:13 -04:00
@include padding-leader;
@include padding-trailer;
2013-10-09 06:30:53 -04:00
color: $color-text-weak;
2012-11-28 03:59:42 -08:00
2013-10-09 06:30:53 -04:00
.container {
2013-10-12 14:25:16 -04:00
@include padding-leader;
2013-10-09 06:30:53 -04:00
@include padding-trailer;
2013-10-17 00:08:47 -07:00
height: 100%;
2013-10-09 06:30:53 -04:00
}
2012-11-28 03:59:42 -08:00
2013-10-11 16:06:20 -04:00
ul {
@include font-size-small;
@include adjust-leading-to(1);
}
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
p {
@include padding-trailer(.25);
margin: {
right: 0;
left: 0;
}
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
&:last-child { padding-bottom: 0; }
}
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
a {
color: $color-text;
2012-11-28 21:00:50 -08:00
2013-10-09 06:30:53 -04:00
&:hover,
&:focus { color: $color-text-strong; }
2012-11-28 08:23:08 -08:00
}
2013-02-08 19:10:33 -08:00
}
2013-10-09 06:30:53 -04:00
.contentinfo-tools,
.contentinfo-social { @include padding-leader($font-size: $font-size-small); }
2013-02-08 19:10:33 -08:00
2013-10-09 06:30:53 -04:00
.contentinfo-tools ul {
@extend %horizontal-list;
font-size: 1em;
}
2013-02-08 19:10:33 -08:00
2013-10-11 16:06:20 -04:00
@include breakpoint($tablet-large) {
2013-02-08 19:10:33 -08:00
.contentinfo {
2013-10-09 06:30:53 -04:00
padding: {
top: 0;
bottom: 0;
}
height: $sticky-contentinfo-height;
2013-02-08 19:10:33 -08:00
.container { text-align: left; }
2013-02-10 15:04:29 -08:00
2013-10-17 00:08:47 -07:00
ul { @extend %table-layout-tablet-large; }
2013-10-09 06:30:53 -04:00
2013-10-17 00:08:47 -07:00
li { @extend %table-layout-cell-tablet-large; }
}
2013-10-09 06:30:53 -04:00
.contentinfo-tools,
.contentinfo-social {
2013-10-17 00:08:47 -07:00
padding: 0;
2013-10-09 06:30:53 -04:00
width: 1px;
white-space: nowrap;
}
2013-10-17 00:08:47 -07:00
.contentinfo-tools ul li {
display: table-cell;
margin: 0;
padding-left: 2em;
}
.contentinfo-social {
padding-left: 4em;
line-height: 0;
}
2013-10-09 06:30:53 -04:00
}