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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#whoami {
padding: 20px 0 50px;
.page-contents-center {
padding: 40px;
@include flex-center-col;
h2 {
text-align: center;
background-color: $medium_grey;
@include flex-center-col;
width: 220px;
height: 220px;
border-radius: 100%;
padding: 30px;
margin: 40px 0;
color: $blue_3;
}
.presentation-card {
.header {
display: grid;
grid-template-columns: auto 1fr;
gap: 30px;
padding: 50px 0;
.pic {
@include flex-center-col;
img {
width: 150px;
height: auto;
border-radius: 100%;
}
}
.header-text {
h3 {
font-size: 22px;
color: $light_1;
margin: 0;
}
h4 {
font-size: 18px;
}
strong,
h4 {
color: $light_1;
}
}
}
.body {
p {
font-size: 18px;
font-style: italic;
font-family: serif;
color: $dark_3;
*:not(blue, a) {
color: $dark_3;
}
}
}
}
}
@media screen and (max-width: $screen_s) {
.page-contents-center {
.presentation-card {
.header {
@include flex-center-col;
.header-text {
text-align: center;
}
}
}
}
}
}