Watch-on-LBRY/src/pages/popup/style.css
Shiba ca65a0288d 🍣 some little fixes in the code
- nothing changed, just some little fixes
2022-08-10 10:18:04 +00:00

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