-
Notifications
You must be signed in to change notification settings - Fork 0
/
_participants.scss
63 lines (50 loc) · 891 Bytes
/
_participants.scss
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
.participants {
}
.participants__heading {
margin-bottom: 40px;
}
.participants__list {
@include list-reset;
display: flex;
flex-direction: row;
gap: 32px;
}
.participants__contents-wrapper {
display: contents;
}
.participants__list-item {
}
.participants__img {
border-radius: 50%;
}
.participants__name {
font-size: 24px;
line-height: 120%;
font-weight: 600;
margin: 0;
}
.participants__position {
font-size: 20px;
line-height: 120%;
opacity: .6;
margin: 0;
}
.participants__more {
background-color: var(--white);
color: var(--link-color);
font: inherit;
font-weight: 500;
border: 1px solid var(--link-color);
border-radius: 999px;
padding: 0 12px;
height: 35px;
transition:
background-color .5s,
color .1s;
&:hover {
background-color: var(--link-color);
color: var(--white);
}
}
.participants__controls {
}