qr-mask/style.css

48 lines
658 B
CSS
Raw Normal View History

2024-07-06 10:36:07 +03:00
body {
margin: 0;
padding: 0.5rem;
}
2024-07-11 17:55:11 +03:00
body > div {
width: fit-content;
margin: auto;
max-width: calc(100vw - 0.5rem * 2);
2024-07-11 17:55:11 +03:00
}
#options {
2024-07-06 10:36:07 +03:00
display: flex;
flex-direction: column;
row-gap: 0.25rem;
}
select, input, button {
width: fit-content;
max-width: 100%;
font-size: 1rem;
}
input[type=number] {
2024-07-11 17:55:11 +03:00
width: calc(4rem + 0.125rem * 2);
2024-07-06 10:36:07 +03:00
}
label {
display: flex;
flex-direction: row;
column-gap: 0.25rem;
}
label#width-wrapper > button {
padding: 0.0625rem 0.25rem;
width: calc(1rem + 0.25rem * 3);
}
label > span:nth-child(1) {
2024-07-11 17:55:11 +03:00
width: 5rem;
2024-07-06 10:36:07 +03:00
text-align: right;
}
2024-07-11 17:55:11 +03:00
canvas {
margin-top: 0.5rem;
border: 2px solid #555;
}