You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
592 B
31 lines
592 B
.root { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
overflow: hidden; |
|
margin-right: .5rem; |
|
width: clamp(2.5vh, 9vw, 120px); |
|
height: clamp(2.5vh, 9vw, 120px); |
|
border-radius: 50%; |
|
border-width: 3px; |
|
border-style: solid; |
|
border-color: var(--theme-primary-color); |
|
background-color: var(--theme-background-secondary); |
|
} |
|
|
|
.container { |
|
width: 90%; |
|
height: 90%; |
|
border-radius: 50%; |
|
overflow: hidden; |
|
} |
|
|
|
.image { |
|
width: 100%; |
|
height: 100%; |
|
background-size: cover; |
|
background-position: center; |
|
overflow: hidden; |
|
} |
|
|
|
|