93c4fbc4b9
* Add YIQ Color Contrast mixin * Remove text underline from `.btn` links * Move YIQ variables * Simplify button classes using YIQ color contrast mixin - DRY up button CSS using Sass list and YIQ color contrast mixin. - Move `color` and `background-color` to new `btn--primary` class instead of assinging on the default class. Removes the need to override them. * Add `.btn--primary` to buttons that just had `.btn` * Apply changes to `/docs` * Add `.btn--primary` class * Update CHANGELOG and history * Add sample form * Abstract colors away into Sass variables for easier themeing * Add "dark" skin * Replace hardcoded color with SCSS variable * Invert Font Awesome icons' colors in author sidebar and footer * Add Sass changes to `/docs` * Use primary button type instead of inverse * Add missing `!default` on `$muted-text-color` * Add `contrast` and `sunrise` skin colors * Add `dirt` skin color * Add `air` skin color option * Add `mint` skin color * Add `btn--primary` class to Submit Comment button * Set skin to `default` * Document skin color options * Add note about skin SCSS import Close #1208
83 lines
No EOL
1.5 KiB
SCSS
83 lines
No EOL
1.5 KiB
SCSS
/* ==========================================================================
|
|
FOOTER
|
|
========================================================================== */
|
|
|
|
.page__footer {
|
|
@include clearfix;
|
|
float: left;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
width: 100%;
|
|
clear: both;
|
|
/* sticky footer fix start */
|
|
position: absolute;
|
|
bottom: 0;
|
|
height: auto;
|
|
/* sticky footer fix end */
|
|
margin-top: 3em;
|
|
color: $muted-text-color;
|
|
-webkit-animation: $intro-transition;
|
|
animation: $intro-transition;
|
|
-webkit-animation-delay: 0.45s;
|
|
animation-delay: 0.45s;
|
|
background-color: $footer-background-color;
|
|
|
|
footer {
|
|
@include clearfix;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 2em;
|
|
max-width: 100%;
|
|
padding: 0 1em 2em;
|
|
|
|
@include breakpoint($x-large) {
|
|
max-width: $x-large;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.fa {
|
|
color: $muted-text-color;
|
|
}
|
|
}
|
|
|
|
.page__footer-copyright {
|
|
font-family: $global-font-family;
|
|
font-size: $type-size-7;
|
|
}
|
|
|
|
.page__footer-follow {
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
li {
|
|
display: inline-block;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
font-family: $sans-serif-narrow;
|
|
font-size: $type-size-6;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
li + li:before {
|
|
content: "";
|
|
padding-right: 5px;
|
|
}
|
|
|
|
a {
|
|
padding-right: 10px;
|
|
font-weight: bold;
|
|
}
|
|
} |