2025-04-07 01:41:12 +00:00

92 lines
1.5 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap");
:root {
--color-default: #cfd2da;
--color-hover: white;
}
body {
visibility: hidden;
user-select: none;
white-space: nowrap;
margin: 0;
user-select: none;
overflow: hidden;
}
p {
margin: 0;
}
.material-symbols-outlined {
font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 40;
}
#eye {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 22pt;
fill: black;
}
.eye-hover {
fill: var(--color-default);
}
#options-wrapper {
position: absolute;
top: calc(48.4%);
left: calc(50% + 18pt);
}
.option-container {
color: var(--color-default);
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-family: "Nunito";
background: linear-gradient(
90deg,
rgba(20, 20, 20, 0.7) 0%,
rgba(20, 20, 20, 0.6) 66%,
rgba(47, 48, 53, 0) 100%
);
font-size: 11pt;
line-height: 22pt;
vertical-align: middle;
margin: 2pt;
transition: 300ms;
transform-origin: left top;
scale: 1;
height: 22pt;
width: 150pt;
top: 0;
}
.option-container:hover {
background: linear-gradient(
90deg,
rgba(30, 30, 30, 0.7) 0%,
rgba(30, 30, 30, 0.6) 66%,
rgba(57, 58, 63, 0) 100%
);
transform-origin: left top;
color: var(--color-hover);
margin-left: 4pt;
}
.option-icon {
font-size: 12pt;
line-height: 22pt;
width: 14pt;
margin: 5pt;
color: var(--color-default);
}
.option-label {
font-weight: 500;
}