about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/footer.scss
blob: fe2d40c0cc384ce00768a580c4f50fcf655ab215 (plain) (blame)
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
.footer {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: $darker-text-color;

  .footer__domain {
    font-weight: 500;

    a {
      color: inherit;
      text-decoration: none;
    }
  }

  .powered-by,
  .single-user-login {
    font-weight: 400;

    a {
      color: inherit;
      text-decoration: underline;
      font-weight: 500;

      &:hover {
        text-decoration: none;
      }
    }

    img {
      margin: 0 4px;
      position: relative;
      bottom: -1px;
      height: 18px;
      vertical-align: top;
    }
  }
}