-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (72 loc) · 1.18 KB
/
styles.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
.detail-not-applicable {
cursor: help;
color: rgba(0, 0, 0, 0.5);
}
.member {
}
.member-body {
padding: 15px;
margin: 0;
text-align: center;
}
.member-name {
font-weight: bold;
}
.member-details {
font-size: 0.9em;
}
.member-job {
margin-bottom: 0;
font-style: italic;
}
.member-header {
display: block;
text-align: center;
padding: 15px;
}
.member figure {
margin: 0;
position: relative;
}
.member-photo {
background: rgba(200, 200, 200, 0.1);
border-radius: 100%;
display: block;
object-fit: cover;
height: 100%;
width: 100%;
transition: filter 400ms;
}
.member-photo:focus,
.member-photo:hover,
a:focus > figure > .member-photo,
a:hover > figure > .member-photo {
filter: opacity(0.6);
}
.member-contact-info {
}
.member-email,
.member-phone,
.member-mobile {
margin-bottom: 0;
padding-bottom: 0;
}
.member-email > :first-child,
.member-phone > :first-child,
.member-mobile > :first-child {
margin-right: 0.5em;
}
.team {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 50px;
justify-content: center;
margin-bottom: 2em;
}
.team-name {
display: block;
font-weight: bold;
text-align: center;
margin-bottom: 2em;
}