about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/monsterpit.scss
blob: 649ae1e201b65f8abbb08b9510507a1806d01537 (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
39
40
41
42
43
44
45
46
.status__content__text,
.e-content
{
  p.signature {
    color: lighten($dark-text-color, 20%);
    font-style: italic;
    font-size: 12px;
    text-align: right;
  }
}

div.media-caption {
  p {
    font-size: 12px !important;
    margin-bottom: 0;
    text-align: center;
  }

  a {
    background-color: lighten($ui-base-color, 7%);
    color: darken($secondary-text-color, 10%);
    text-decoration: none;
    padding: 2px;
    border: 1px solid lighten($ui-base-color, 20%);
    border-radius: 8px;

    &:hover {
      border: 1px solid darken($secondary-text-color, 20%);
      color: lighten($dark-text-color, 10%);
    }

    &.mention {
      &:hover {
        text-decoration: none;

        span {
          text-decoration: underline;
        }
      }
    }

    .fa {
      color: $dark-text-color;
    }
  }
}