frontend/style/pages/viewer/AnalyseMenu.css
2023-04-29 14:54:53 +02:00

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;
}
}
}