mirror of
https://github.com/LBRYFoundation/Watch-on-LBRY.git
synced 2025-08-23 17:47:26 +00:00
56 lines
No EOL
753 B
CSS
56 lines
No EOL
753 B
CSS
#popup {
|
|
width: 40em;
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
margin: auto;
|
|
}
|
|
|
|
header {
|
|
display: grid;
|
|
gap: .5em;
|
|
padding: .75em;
|
|
position: sticky;
|
|
top: 0;
|
|
background: rgba(19, 19, 19, 0.5);
|
|
justify-items: center;
|
|
}
|
|
|
|
main {
|
|
display: grid;
|
|
gap: 2em;
|
|
padding: 1.5em 0.5em;
|
|
}
|
|
|
|
section {
|
|
display: grid;
|
|
justify-items: center;
|
|
text-align: center;
|
|
gap: .75em;
|
|
}
|
|
|
|
label {
|
|
font-size: 1.75em;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
section>* {
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.center {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
|
|
.left {
|
|
display: grid;
|
|
justify-items: start;
|
|
align-items: center;
|
|
text-align: left;
|
|
}
|
|
|
|
.toggle-option {
|
|
display: grid;
|
|
gap: .5em;
|
|
} |