Alexander Zinchuk ee1b137d0e Dark Theme
2021-04-12 17:52:01 +03:00

163 lines
2.4 KiB
SCSS

.Avatar {
--color-user: var(--color-primary);
flex: none;
align-items: center;
justify-content: center;
width: 3.375rem;
height: 3.375rem;
border-radius: 50%;
background: linear-gradient(var(--color-white) -125%, var(--color-user));
color: white;
font-weight: bold;
display: flex;
white-space: nowrap;
img:not(.emoji) {
border-radius: 50%;
}
.emoji {
width: 1rem;
height: 1rem;
}
i {
font-size: 2.5rem;
}
&.size-micro {
width: 1rem;
height: 1rem;
font-size: 0.5125rem;
.emoji {
width: .5625rem;
height: .5625rem;
}
}
&.size-tiny {
width: 2rem;
height: 2rem;
font-size: .875rem;
.emoji {
width: .875rem;
height: .875rem;
}
}
&.size-small {
width: 2.125rem;
height: 2.125rem;
font-size: 0.875rem;
.emoji {
width: .875rem;
height: .875rem;
}
}
&.size-medium {
width: 2.75rem;
height: 2.75rem;
font-size: 1.1875rem;
.emoji {
width: 1rem;
height: 1rem;
}
}
&.size-large {
font-size: 1.3125rem;
i {
font-size: 3.5rem;
}
.emoji {
width: 1.3125rem;
height: 1.3125rem;
}
}
&.size-jumbo {
width: 7.5rem;
height: 7.5rem;
font-size: 3.5rem;
i {
font-size: 6rem;
}
.emoji {
width: 3.5rem;
height: 3.5rem;
}
}
&.online {
position: relative;
&::after {
content: '';
display: block;
position: absolute;
bottom: 0.05rem;
right: 0.05rem;
width: 0.875rem;
height: 0.875rem;
border-radius: 50%;
border: 2px solid var(--color-background);
background-color: #0ac630;
flex-shrink: 0;
}
}
&.interactive {
cursor: pointer;
}
img:not(.emoji) {
width: 100%;
height: 100%;
}
&.color-bg-1 {
--color-user: var(--color-user-1);
}
&.color-bg-2 {
--color-user: var(--color-user-2);
}
&.color-bg-4 {
--color-user: var(--color-user-4);
}
&.color-bg-5 {
--color-user: var(--color-user-5);
}
&.color-bg-6 {
--color-user: var(--color-user-6);
}
&.color-bg-7 {
--color-user: var(--color-user-7);
}
&.color-bg-8 {
--color-user: var(--color-user-8);
}
&.saved-messages {
--color-user: var(--color-primary);
}
&.deleted-account {
--color-user: var(--color-gray);
}
}