blob: 154031939d1580b6def6a2b4af21351efb0f519f (
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
|
@import '_variables';
@import '_mixins';
.about-instance-title {
display: flex;
justify-content: space-between;
.title {
font-size: 20px;
font-weight: $font-semibold;
}
.contact-admin {
@include peertube-button;
@include orange-button;
height: fit-content;
}
}
.instance-badges {
font-size: 16px;
.badge {
font-size: 12px;
font-weight: $font-semibold;
margin-right: 5px;
&.category {
background-color: pvar(--mainColor);
}
}
}
.section-title {
font-weight: $font-semibold;
font-size: 16px;
margin-bottom: 5px;
display: flex;
align-items: center;
}
.middle-title {
@include in-content-small-title;
margin-top: 45px;
margin-bottom: 25px;
}
.block {
margin-bottom: 30px;
font-size: 15px;
}
.short-description .dedicated-to-nsfw {
margin-top: 20px;
font-weight: $font-semibold;
}
|