blob: 242a498d046f61e75852d9ec4ad1be9bb7836805 (
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
|
@use '_mixins' as *;
@use '_variables' as *;
.modal-body {
font-size: 15px;
}
.two-columns {
display: flex;
align-items: center;
justify-content: center;
margin-top: 50px;
}
.mascot-fw {
width: 170px;
}
.mascot {
@include margin-right(2rem);
display: block;
min-width: 170px;
}
.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;
}
.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;
}
}
|