aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/_sass/footer.scss
blob: 16d3ff2bd8c59105abbdeae827a1a6a23cc78354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Footer styles

$footer-backgroud: #424242;
$footer-color: #fff;
$footer-link-color: #e0e0e0;

.footer {
  margin-top: 40px;
  background-color: $footer-backgroud;
  color: $footer-color;
  padding: 20px;

  .text-muted {
    color: $footer-link-color;
  }

  a {
    color: $footer-link-color;

    &:hover,
    &:focus {
      color: $footer-color;
      text-decoration: none;
    }
  }
}