update icons for mute and unmute

This commit is contained in:
imohkay 2021-10-26 15:56:07 +05:30
commit eab1b1b4f2
15 changed files with 120 additions and 26 deletions

View file

@ -56,8 +56,8 @@
max-width: var(--container-width);
margin: auto;
padding: 20px 20px;
font-size: 22px;
line-height: 26px;
font-size: 20px;
line-height: 24px;
figure {
width: 100%;
@ -70,4 +70,27 @@
}
}
}
.annotation-icon-wrapper {
border: 3px solid rgba(#fff, 0.8);
border-radius: 50%;
background: linear-gradient(to right, var(--bg-color-1), var(--bg-color-2) , var(--bg-color-3), var(--bg-color-4));
background-size: 300% 100%;
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
animation: background_animation 30s ease-in-out infinite;
opacity: 0.9;
&:hover, &:focus {
opacity: 1;
}
}
.annotation-icon {
color: rgba(#fff, 1);
font-size: 38px;
}
}