blob: 43f336f59314494977b317a206adc1e9719e289a (
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
|
@use '_variables' as *;
@use '_mixins' as *;
.columns {
display: flex;
.information {
width: 100%;
margin-left: 50px;
> div {
margin-bottom: 30px;
}
@media screen and (max-width: $small-view) {
display: none;
}
}
}
h1 {
font-size: 20px;
}
h2 {
font-weight: $font-bold;
font-size: 16px;
color: pvar(--mainColor);
background-color: pvar(--mainBackgroundColor);
padding: 0 5px;
width: fit-content;
margin: -8px 0 0;
}
.section {
$min-width: 600px;
@include padding-left(10px);
min-width: $min-width;
margin-bottom: 50px;
border: 1px solid $separator-border-color;
border-radius: 5px;
width: fit-content;
.form-group,
.description {
@include margin-left(5px);
}
.description {
color: pvar(--greyForegroundColor);
margin-top: 5px;
margin-bottom: 15px;
}
@media screen and (max-width: $min-width) {
min-width: none;
}
}
my-timestamp-input {
display: block;
}
my-embed {
display: block;
max-width: 500px;
width: 100%;
}
my-reactive-file {
display: block;
width: fit-content;
}
|