73 lines
1.1 KiB
SCSS
73 lines
1.1 KiB
SCSS
|
|
select,
|
||
|
|
input[type="text"],
|
||
|
|
input[type="number"] {
|
||
|
|
background-color: var(--color-browngray-300);
|
||
|
|
}
|
||
|
|
|
||
|
|
.field--view-only {
|
||
|
|
opacity: 0.3;
|
||
|
|
}
|
||
|
|
|
||
|
|
.settings-section {
|
||
|
|
h2 {
|
||
|
|
border-bottom: 1px solid #000;
|
||
|
|
}
|
||
|
|
.settings-subsection:not(:last-child) {
|
||
|
|
border-bottom: 1px solid var(--color-browngray-050);
|
||
|
|
}
|
||
|
|
|
||
|
|
.settings-subsection {
|
||
|
|
padding: 0.5rem 0;
|
||
|
|
|
||
|
|
.field {
|
||
|
|
display: flex;
|
||
|
|
label {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.input-with-unit {
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
.input-with-color {
|
||
|
|
.clr-field {
|
||
|
|
display: flex;
|
||
|
|
button {
|
||
|
|
position: absolute;
|
||
|
|
transform: none;
|
||
|
|
height: 1rem;
|
||
|
|
top: auto;
|
||
|
|
right: auto;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
input {
|
||
|
|
padding-left: 2.5rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
&.margins {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
h3 {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.field {
|
||
|
|
width: 50%;
|
||
|
|
|
||
|
|
label {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.input-with-unit {
|
||
|
|
input {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|