about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/monsterfork/components/formatting.scss
blob: 927ade425d890f6c2b3a38df9ab55b5163a11515 (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
47
48
49
50
.status__content__text,
.reply-indicator__content,
.composer--reply > .content,
.account__header__content
{
  s { text-decoration: line-through; }
  del { text-decoration: line-through; }
  h6 { font-size: 8px; font-weight: bold; }
  hr { border-color: lighten($dark-text-color, 10%); }
  sub {
    vertical-align: sub;
    font-size: smaller;
  }
  sup {
    vertical-align: super;
    font-size: smaller;
  }
  pre, code {
    color: lighten($dark-text-color, 33%);
  }
  mark {
    background-color: #ccff15;
    color: black;
  }
  blockquote {
    font-style: italic;
  }
  .center, .centered, center {
    text-align: center;
  }
  summary {
    color: lighten($dark-text-color, 33%);
    font-weight: bold;

    &:focus, &:active {
      outline: none;
    }
  }
  details > p, details > span {
    padding-top: 5px;
    padding-left: 10px;
    border-left: 3px solid $darker-text-color;
    color: $darker-text-color;
    white-space: normal;

    p:last-child {
      margin-bottom: 0;
    };
  }
}