summaryrefslogtreecommitdiff
path: root/design/sass/_footer.scss
diff options
context:
space:
mode:
Diffstat (limited to 'design/sass/_footer.scss')
-rw-r--r--design/sass/_footer.scss40
1 files changed, 40 insertions, 0 deletions
diff --git a/design/sass/_footer.scss b/design/sass/_footer.scss
new file mode 100644
index 0000000..84def82
--- /dev/null
+++ b/design/sass/_footer.scss
@@ -0,0 +1,40 @@
+footer[role="contentinfo"] {
+ margin-top: 5em;
+ @include breakpoint(gamma) {
+ max-width: 960;
+ }
+ &:before {
+ @include breakpoint(beta) {
+ @include faded_line_after;
+ margin-bottom: 1.2em;
+ }
+ }
+ ul {
+ border-top: 1px $brown dotted;
+ border-bottom: 1px $brown dotted;
+ padding: .5rem 0;
+ @include breakpoint(beta) {
+ border: none;
+ }
+ }
+ li {
+ display: inline;
+ margin: 0 .125em;
+ a {
+ color: $brown;
+ text-decoration: none;
+ }
+ }
+ p {
+ @include fontsize(10);
+ }
+}
+.dark footer[role="contentinfo"] {
+ &:before {
+ @include light_faded_line_after;
+ }
+ a {
+ color: $body_font_light;
+}
+}
+