blob: a93dbcef9538464e18ab677789c4e0d91e4460be (
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
81
82
83
84
85
86
87
88
89
|
@import '_mixins';
@import '_variables';
.modal-body {
font-size: 15px;
}
.two-columns {
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}
.mascot-fw {
width: 170px;
}
.mascot {
display: block;
min-width: 170px;
margin-right: 2rem;
}
.subtitle {
font-weight: $font-semibold;
margin-bottom: 10px;
font-size: 16px;
}
.block-documentation {
.subtitle {
margin-bottom: 20px;
}
}
li {
margin-bottom: 10px;
}
.configure-instance {
text-align: center;
font-weight: 600;
font-size: 18px;
margin: 20px 0 40px 0;
}
.columns {
display: flex;
.link-block {
@include disable-default-a-behaviour;
color: pvar(--mainForegroundColor);
padding: 10px;
transition: background-color 0.2s ease-in;
flex-basis: 33%;
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.link-title {
font-size: 16px;
font-weight: $font-semibold;
display: flex;
justify-content: center;
margin-bottom: 5px;
}
.link-title,
div {
text-align: center;
}
}
}
.configure-instance-button {
@include peertube-button;
@include orange-button;
@include disable-default-a-behaviour;
display: inline-block;
}
.action-button-understood {
@include peertube-button;
@include grey-button;
}
|