File: footer.scss

package info (click to toggle)
bazel-bootstrap 4.2.3%2Bds-11.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 85,716 kB
  • sloc: java: 721,717; sh: 55,859; cpp: 35,361; python: 12,139; xml: 295; objc: 269; makefile: 113; ansic: 106; ruby: 3
file content (26 lines) | stat: -rwxr-xr-x 396 bytes parent folder | download | duplicates (4)
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-background: #424242;
$footer-color: #fff;
$footer-link-color: #e0e0e0;

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

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

  a {
    color: $footer-link-color;

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