blob: 2a5ec08f53142cd0c7d7256aa03160e4e75cebc4 (
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
|
@use '_variables' as *;
@use '_mixins' as *;
.root {
max-width: 1200px;
margin: auto;
}
.about-peertube-title {
font-size: 25px;
text-align: center;
font-weight: $font-semibold;
margin-bottom: 15px;
}
.mascot {
display: block;
margin: 20px auto;
}
::ng-deep .section-title {
font-weight: $font-semibold;
font-size: 20px;
margin-bottom: 5px;
}
.description {
text-align: center;
}
.documentation {
display: flex;
flex-wrap: wrap;
margin: 50px 0;
justify-content: center;
.card {
margin: 30px;
flex-basis: 300px;
font-size: 15px;
}
}
.description,
.p2p-privacy,
my-about-peertube-contributors {
::ng-deep {
p,
li {
font-size: 15px;
}
}
}
.privacy-contributors {
display: flex;
flex-direction: column;
.p2p-privacy {
.section-title {
margin: 50px 0 20px;
text-align: center;
}
h6 {
font-size: 20px;
margin-top: 15px;
}
}
}
.card-title {
font-size: 1.25rem;
}
.p2p-privacy-title {
font-size: 20px;
}
|