File size: 1,157 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | .playground {
}
.playground h1 {
font-size: 2rem;
margin: 1rem auto;
text-align: center;
}
.playground h2 {
margin: 1rem auto;
}
.form {
display: flex;
flex-direction: row;
gap: 1rem;
padding: 1rem 0;
justify-content: center;
}
.form input {
padding: 0.5em;
border: 1px solid var(--ifm-color-emphasis-200);
border-radius: 0.25rem;
}
@media (max-width: 1200px) {
.form {
overflow-x: auto;
justify-content: left;
}
}
.form fieldset {
border: 1px solid var(--ifm-color-emphasis-200);
padding: 1em;
margin: 0;
border-radius: 0.25rem;
}
.fields {
display: flex;
flex-direction: column;
gap: 0.5em;
font-size: 0.85rem;
}
.form fieldset legend {
display: inline-block;
padding: 0 0.5em;
text-align: center;
font-weight: bold;
}
.form label {
display: flex;
flex-direction: row;
gap: 0.5em;
align-items: center;
white-space: nowrap;
text-transform: capitalize;
}
.form label:has(select),
.form label:has(input[type="text"]),
.form label:has(input[type="number"]),
.form label:has(input[type="color"]) {
justify-content: space-between;
}
.browserWindow,
.props {
margin: 2rem;
}
|