2024-10-12 15:43:40 +03:00
|
|
|
.skip-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
position: fixed;
|
2025-03-08 12:33:28 +03:00
|
|
|
bottom: 8rem;
|
|
|
|
right: 6rem;
|
2024-10-12 15:43:40 +03:00
|
|
|
z-index: 10000;
|
|
|
|
padding: 12px 20px;
|
2025-03-08 12:33:28 +03:00
|
|
|
background-color: #303030;
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
2024-10-12 15:43:40 +03:00
|
|
|
border: none;
|
2025-03-08 12:33:28 +03:00
|
|
|
border-radius: 0.2em;
|
2024-10-12 15:43:40 +03:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
transition: opacity 200ms ease-out;
|
|
|
|
gap: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-transition {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.skip-button-hidden {
|
|
|
|
opacity: 0;
|
|
|
|
}
|