Skip to content

Commit

Permalink
💄 Update custom CSS for team members
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Aug 9, 2024
1 parent 255e937 commit 1b30732
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docs/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,43 @@ a.internal-link::after {
.shadow {
box-shadow: 5px 5px 10px #999;
}

.user-list {
display: flex;
flex-wrap: wrap;
margin-bottom: 2rem;
}

.user-list-center {
justify-content: space-evenly;
}

.user {
margin: 1em;
min-width: 7em;
}

.user .avatar-wrapper {
width: 80px;
height: 80px;
margin: 10px auto;
overflow: hidden;
border-radius: 50%;
position: relative;
}

.user .avatar-wrapper img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.user .title {
text-align: center;
}

.user .count {
font-size: 80%;
text-align: center;
}

0 comments on commit 1b30732

Please sign in to comment.