_footer.scss 1.22 KB
Newer Older
1
// studio - elements - global footer
2 3 4
// ====================

.wrapper-footer {
5
  position: relative;
6
  width: 100%;
7
  margin: 0 0 $baseline 0;
8
  padding: $baseline;
9 10

  footer.primary {
11
    @extend %t-copy-sub2;
12 13 14 15 16
    @include clearfix();
    max-width: $fg-max-width;
    min-width: $fg-min-width;
    width: flex-grid(12);
    margin: 0 auto;
17
    color: $gray-l1;
18 19 20 21 22 23 24

    .colophon {
      width: flex-grid(4, 12);
      float: left;
      margin-right: flex-gutter(2);
    }

25
    a {
26
      color: $ui-link-color;
27 28

      &:hover, &:active {
29
        color: $ui-link-color-focus;
30 31 32
      }
    }

33 34 35 36 37 38 39
    .nav-peripheral {
      width: flex-grid(6, 12);
      float: right;
      text-align: right;

      .nav-item {
        display: inline-block;
40
        margin-right: ($baseline/4);
41 42 43 44 45

        &:last-child {
          margin-right: 0;
        }

46
        a {
47
          border-radius: 2px;
48
          padding: ($baseline/2) ($baseline/2);
49
          background: transparent;
50

51
          [class^="icon-"] {
52
            @include transition(top $tmg-f2 ease-in-out 0.25s);
53 54 55 56
            @include font-size(15);
            display: inline-block;
            vertical-align: middle;
            margin-right: ($baseline/4);
57 58 59 60 61
          }
        }
      }
    }
  }
Brian Talbot committed
62
}