Preview

86
HTML
SCSS
*, ::after, ::before {
box-sizing: border-box;
}
/* css element */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;700;900&display=swap');
.profile {
position: relative;
.photo {
width: 180px;
height: 180px;
border-radius: 100%;
overflow: hidden;
img {
width: 100%;
height: auto;
}
}
.score {
width: 60px;
height: 60px;
background-color: #002032;
border: 4px solid #EDC9DC; /* Same color as page background */
border-radius: 100%;
font-family: 'Fira Sans', sans-serif;
color: #ffffff;
font-size: 30px;
font-weight: 500;
line-height: 52px;
text-align: center;
position: absolute;
bottom: -4px;
right: -4px;
}
}