blob: 31a424cd76e5c3c3d71240805bd0b40d78814f1e (
plain)
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
|
.fullscreen {
width: 100%;
height: 100vh;
max-width: 100%;
max-height: 100vh;
z-index: 1;
position: relative;
overflow: hidden;
}
.fullscreen_centered {
z-index: 2;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.height_100-55 {
height: calc(100% - 55px);
}
.mediumbox {
width: 60vh;
max-height: auto;
}
.padding_25 {
padding: 25px;
}
.bordered_4px {
border: 4px solid #383838;
}
.center_text {
text-align: center;
}
.justify_text {
text-align: justify;
}
.image_block {
width: 128px;
height: 128px;
background-color: #b9b9b9;
display: inline-block;
margin-right: 20px;
cursor: pointer;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.form_elements {
margin-top: 20px;
}
|