File size: 637 Bytes
e7ef6c8 |
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 |
.avatars {
display: flex;
}
.container {
display: flex;
padding-top: 20px;
}
.avatars__item {
margin-left: -0.25rem;
}
.avatars__image {
box-shadow: 0 0 0 0.25rem #fff;
overflow: hidden;
align-items: center;
display: flex;
justify-content: center;
border-radius: 9999px;
}
.avatars__image:hover {
color: red;
}
.more {
box-shadow: 0 0 0 0.25rem #fff;
display: flex;
overflow: hidden;
border-radius: 9999px;
margin-left: -10px;
z-index: 10;
padding: 8px;
width: 40px;
height: 40px;
align-items: center;
display: flex;
justify-content: center;
background-color: rgba(1, 4, 14, 0.653);
}
|