/* * oaer.css * Copyright (C) 2024 veypi * * Distributed under terms of the MIT license. */ @import './animate.scss'; .voa { user-select: none; cursor: pointer; height: 4rem; width: 4rem; display: flex; justify-content: center; align-items: center; .voa-off{ } .voa-on { border-radius: 100%; background: #999; animation: scale-up 100ms ease-out forwards; } :hover{ opacity: 0.9; } } .voa-animate-off-scale-off { animation: scale-off 100ms ease-out forwards; }