mirror of
https://codeberg.org/demostf/frontend.git
synced 2026-06-03 18:24:12 +02:00
42 lines
712 B
CSS
42 lines
712 B
CSS
.analyse-menu {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0.5;
|
|
transition: all 0.5s;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
& .share-session {
|
|
|
|
background: transparent;
|
|
color: var(--primary-color);
|
|
font-size: 200%;
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 10px;
|
|
border: none;
|
|
cursor: pointer;
|
|
background-image: url("images/link_white.svg");
|
|
background-size: contain;
|
|
|
|
&:active, &:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
& .share-text {
|
|
color: var(--primary-color);
|
|
background-color: var(--text-secondary);
|
|
padding: 5px;
|
|
margin-top: 0;
|
|
border: 1px #888 solid;
|
|
border-radius: 5px;
|
|
|
|
&:active, &:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|