Skip to content
Snippets Groups Projects
_footer.scss 631 B
Newer Older
bcweaver's avatar
bcweaver committed
@import "../helpers/mixins";
@import "../helpers/variables";
@import "../helpers/functions";
//
// Footer
// --------------------------------------------------

.footer {
  background: #173E41;
  border-top: none;
  color: $white;
bcweaver's avatar
bcweaver committed
  margin-top: 30px;
bcweaver's avatar
bcweaver committed

  a {
    color: $white;
  }
}

#subfoot {
  background: $deep-grey;
  float: left;
  width: 100%;
  color: $white;
  padding: 20px 0;

  a {
    color: $white;
  }

  .sf-col2 {
    text-align: right;

    ul {
      list-style-type: none;
    }
  }

  @media (max-width: 768px) {
    .col-xs-12 {
      text-align: center;

      ul {
        padding: 0;
      }
    }
  }
}