2022-08-07 10:02:42 +00:00
|
|
|
.flyout-dim {
|
2022-08-08 18:59:40 +00:00
|
|
|
margin: 0; padding: 0;
|
|
|
|
|
2022-08-07 10:02:42 +00:00
|
|
|
width: 100vw; height: 100vh;
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
|
2022-08-08 18:59:40 +00:00
|
|
|
top: 0; bottom: 0; left: 0; right: 0;
|
2022-08-07 10:02:42 +00:00
|
|
|
|
2022-08-08 18:59:40 +00:00
|
|
|
position: fixed; z-index: 999;
|
2022-08-07 10:02:42 +00:00
|
|
|
|
2022-08-08 18:59:40 +00:00
|
|
|
background-color: var(--bg);
|
2022-09-20 13:06:41 +00:00
|
|
|
backdrop-filter: blur(15px);
|
2022-08-07 10:02:42 +00:00
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
transition: opacity 1s cubic-bezier(.19,1,.22,1), filter 1s cubic-bezier(.19,1,.22,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.flyout {
|
|
|
|
margin: 0; padding: 0.5rem;
|
|
|
|
|
|
|
|
max-width: 621px; width: calc(100% - 3.5rem);
|
2022-08-14 16:43:54 +00:00
|
|
|
height: auto; min-height: 10rem;
|
2022-08-07 10:02:42 +00:00
|
|
|
|
2022-08-08 18:59:40 +00:00
|
|
|
position: fixed; z-index: 9999;
|
2022-08-07 10:02:42 +00:00
|
|
|
left: 50%; bottom: -15rem;
|
|
|
|
transform: translateX(-50%) scale(0.5);
|
|
|
|
|
2022-08-08 18:59:40 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
background-color: var(--bg);
|
|
|
|
backdrop-filter: blur(8px);
|
2022-08-07 10:02:42 +00:00
|
|
|
color: white;
|
|
|
|
|
|
|
|
transition: transform 1s cubic-bezier(.19,1,.22,1), bottom 1s cubic-bezier(.19,1,.22,1);
|
|
|
|
|
|
|
|
border-radius: var(--rad);
|
|
|
|
border: 0.2rem solid var(--green);
|
2022-08-08 18:59:40 +00:00
|
|
|
/*outline: 0.5rem solid var(--bg);*/
|
2022-08-07 10:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flyout-header {
|
2022-08-14 16:43:54 +00:00
|
|
|
margin: 0 0 0.5rem 0;
|
2022-08-07 10:02:42 +00:00
|
|
|
font-size: 20px;
|
2022-08-09 13:11:32 +00:00
|
|
|
font-family: "Lexend Deca", sans-serif;
|
2022-08-07 10:02:42 +00:00
|
|
|
}
|
2022-08-14 16:43:54 +00:00
|
|
|
.flyout-description {
|
|
|
|
margin: 0 0 0.5rem 0;
|
|
|
|
max-height: 8rem;
|
|
|
|
overflow-y: auto;
|
2022-08-14 21:27:10 +00:00
|
|
|
|
|
|
|
font-family: 'Secular One',
|
|
|
|
sans-serif;
|
2022-08-14 16:43:54 +00:00
|
|
|
}
|
2022-08-07 10:02:42 +00:00
|
|
|
|
|
|
|
.flyout-actionbox {
|
|
|
|
display: inline;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-08-07 17:28:21 +00:00
|
|
|
|
2022-08-07 10:02:42 +00:00
|
|
|
/* Worlds shittest workaround to a problem I have no clue how to fix */
|
2022-08-07 17:28:21 +00:00
|
|
|
.flyout-actionbox *,
|
|
|
|
.flyout-actionbox * * {
|
2022-08-07 10:02:42 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-08-07 17:28:21 +00:00
|
|
|
.flyout-actionbox * * * {
|
2022-08-07 10:02:42 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
2022-09-20 13:06:41 +00:00
|
|
|
.flyout-actionbox > button {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
.flyout-actionbox > button > * {
|
|
|
|
width: auto;
|
|
|
|
}
|