blob: a90b6247d08bdb4706b1d65437144b08a39d372c [file] [log] [blame]
steren505b78c2017-06-22 18:47:17 +02001// Footer styles
2
jingwen74065202018-11-21 11:34:55 -08003$footer-background: #424242;
steren505b78c2017-06-22 18:47:17 +02004$footer-color: #fff;
5$footer-link-color: #e0e0e0;
6
7.footer {
8 margin-top: 40px;
jingwen74065202018-11-21 11:34:55 -08009 background-color: $footer-background;
steren505b78c2017-06-22 18:47:17 +020010 color: $footer-color;
11 padding: 20px;
12
13 .text-muted {
14 color: $footer-link-color;
15 }
16
17 a {
18 color: $footer-link-color;
19
20 &:hover,
21 &:focus {
22 color: $footer-color;
23 text-decoration: none;
24 }
25 }
26}