File: _footer.scss

package info (click to toggle)
select2.js 4.0.1~dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,416 kB
  • ctags: 143
  • sloc: makefile: 7
file content (42 lines) | stat: -rw-r--r-- 554 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Footer

.s2-docs-footer {
  border-top: 1px solid #eee;
  color: #767676;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 100px;
  text-align: center;

  &-links {
    padding-left: 0;
    margin-top: 20px;
  }

  &-links li {
    display: inline;
    padding: 0 2px;

    &:after {
      content: "ยท";
      padding-left: 8px;
    }

    &:first-child {
      padding-left: 0;
    }

    &:last-child:after {
      content: "";
      padding-left: 0;
    }
  }

  @media (min-width: 768px) {
    p {
      margin-bottom: 0;
    }
  }
}