blob: 62a0a467059c2cc21363d1cfc9597107175da343 (
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
|
$contact-internal-vgap: 4px;
$contact-vspacing: 2em;
.contact {
text-align: center;
display: inline-block;
width: $content-width/2.2;
margin: 0 0 $contact-vspacing 0;
padding: 0 1em 0 1em;
}
.contact__position_name {
margin-bottom: 0;
}
.contact__position_name--hallitus {
margin-top: 0.2em;
}
.contact__person_name {
margin-top: $contact-internal-vgap;
margin-bottom: 0;
}
.contact__person_name--generic {
margin-top: $contact-internal-vgap*2;
}
.contact__section {
margin-top: $contact-internal-vgap;
}
.contact__section--spacer {
border-top: 3px solid $brand-color;
width: 20%;
margin-left: auto;
margin-right: auto;
}
.contact__photo {
border-radius: 50%;
width: 150px;
height: 150px;
}
.contact_group {
margin-bottom: 3em;
}
.contact_group__subgroup {
margin-bottom: 1.5em;
}
|