about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/monsterpit.scss
blob: 7dccd81a427c5b7baaf27eb582f54c9795a40411 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
.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;
  }
  .caption {
    display: block;
    margin: auto;
    font-size: 12px !important;
    padding-top: 0;
    text-align: center;
    max-width: 80%;
  }
  .caption-hidden {
    display: none;
  }
  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 {
		color: $secondary-text-color;
		text-decoration: none;
		font-weight: bold;

		&:hover {
			text-decoration: underline;

			.fa {
				color: lighten($dark-text-color, 7%);
			}
		}

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

				span {
					text-decoration: underline;
				}
			}
		}

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