aboutsummaryrefslogtreecommitdiffstats
path: root/root/static/style/footer/text$x-scss.scss
blob: 721ff122b67150be2814943296593d5682c3795a (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
footer {
  display: flex;
  padding: 1rem 2rem;
  height: 1rem;

  position: sticky;
  bottom: 0;

  @include media-medium() {
    position: initial;
  }
  @include media-small() {
    position: initial;
  }
  
  @media print {
    position: absolute;
    display: none;
  }

  color: $gray-bright;
  background: $gray-dark;

  .icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;

    .iconlink  {
      filter: invert(.7);

      &:hover {
        filter: invert(1);
      }

      > img {
        height: 1em;
        margin-left: 0.5em;
        vertical-align: middle;
      }
    }
  }
}