blob: 6aa64b65671b79d4cf4a2e1f7c3aa84f43910ba3 (
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
|
.guest-header {
display: flex;
align-items: center;
justify-content: flex-start;
min-width: fit-content;
}
.guest-link {
color: #2BB673;
text-decoration: underline;
margin-left: 10px;
}
.guest-bio {
margin-top: 0;
font-size: 16px;
}
.bio-button {
cursor: pointer;
vertical-align: middle;
}
.add-indent {
margin-left: 19px;
}
.bio-button h4 {
margin: 0;
margin-right: 10px;
color: #2BB673;
align-self: center;
}
.guest-column {
align-items: flex-start;
justify-content: flex-start;
margin: 0px 10px;
width: 50%;
}
#guest-box {
width: 100%;
}
@media only screen and (max-width: 800px) {
#guest-box {
flex-direction: column;
justify-content: center;
width: auto;
}
.guest-column {
width: 100%;
}
}
|