Newer
Older
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
.title-content-container {
/*
Images are set to a 4:3 aspect ratio and made to
fit by shrinking and centering.
*/
.portrait {
@include respond-to-medium(width, 6rem);
@include respond-to-medium(height, 8rem);
@include respond-to-medium(min-width, 6rem);
@include respond-to-medium(min-height, 8rem);
@include respond-to-medium(max-width, 6rem);
@include respond-to-medium(max-height, 8rem);
flex-shrink: 0; /* Don't shrink */
object-fit: cover;
object-position: center;
max-height: 8rem;
border-color: white;
}
.contact {
text-align: left;
#contacts-general {
margin-bottom: 1rem;
}
.org-long {
@include font-text;
@include font-small;
}
}
.subject {
text-align: center;
.name {
@include font-very-large;
}
.position {
/* Override default title section settings */
@include font-text;
@include font-small;
}
}
@include medium-is-tablet {
.contact {
break-before: always;
}
}
}