86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame^] | 1 | |
2 | .avatarHolder { | ||||
3 | margin-bottom: 16px; | ||||
4 | text-align: center; | ||||
5 | position: relative; | ||||
6 | display: inline-block; | ||||
7 | height: 120px; | ||||
8 | |||||
9 | & > img { | ||||
10 | width: 120px; | ||||
11 | height: 120px; | ||||
12 | margin-bottom: 20px; | ||||
13 | border-radius: 50%; | ||||
14 | } | ||||
15 | &:hover:after { | ||||
16 | position: absolute; | ||||
17 | top: 0; | ||||
18 | right: 0; | ||||
19 | bottom: 0; | ||||
20 | left: 0; | ||||
21 | color: #eee; | ||||
22 | font-size: 24px; | ||||
23 | font-style: normal; | ||||
24 | line-height: 110px; | ||||
25 | background: rgba(0, 0, 0, 0.5); | ||||
26 | border-radius: 50%; | ||||
27 | cursor: pointer; | ||||
28 | content: '+'; | ||||
29 | -webkit-font-smoothing: antialiased; | ||||
30 | -moz-osx-font-smoothing: grayscale; | ||||
31 | } | ||||
32 | } | ||||
33 | |||||
34 | .teamTitle { | ||||
35 | margin-bottom: 12px; | ||||
36 | color: @heading-color; | ||||
37 | font-weight: 500; | ||||
38 | } | ||||
39 | |||||
40 | .team { | ||||
41 | :global { | ||||
42 | .ant-avatar { | ||||
43 | margin-right: 12px; | ||||
44 | } | ||||
45 | } | ||||
46 | |||||
47 | a { | ||||
48 | display: block; | ||||
49 | margin-bottom: 24px; | ||||
50 | overflow: hidden; | ||||
51 | color: @text-color; | ||||
52 | white-space: nowrap; | ||||
53 | text-overflow: ellipsis; | ||||
54 | word-break: break-all; | ||||
55 | transition: color 0.3s; | ||||
56 | |||||
57 | &:hover { | ||||
58 | color: @primary-color; | ||||
59 | } | ||||
60 | } | ||||
61 | } |