mirror of
https://github.com/ilyhalight/voice-over-translation.git
synced 2026-05-02 05:20:32 +00:00
18 lines
375 B
CSS
18 lines
375 B
CSS
.translation-btn {
|
|
box-sizing: border-box;
|
|
width: 5rem;
|
|
padding: 1.5rem;
|
|
border-radius: 0.5rem;
|
|
background: no-repeat center black
|
|
url(https://icongr.am/entypo/language.svg?size=25&color=ffffff);
|
|
position: absolute;
|
|
top: 3rem;
|
|
left: 50%;
|
|
box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.5);
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.translation-btn:hover {
|
|
opacity: 1;
|
|
}
|