rentgen/options.scss

79 lines
1.6 KiB
SCSS
Raw Normal View History

@import './styles/colors.scss';
2022-01-23 21:42:49 +01:00
.options-container {
padding-top: 0.5rem;
span {
2022-02-02 10:33:09 +01:00
color: $ultra-black-color;
2022-01-23 21:42:49 +01:00
font-size: 0.875rem;
font-weight: 600;
}
fieldset {
2022-01-24 12:50:54 +01:00
padding: 0.5rem 0 1rem;
2022-01-23 21:42:49 +01:00
border: none;
display: flex;
flex-flow: column;
.label-checkbox {
cursor: pointer;
margin-left: 0.5rem;
2022-04-15 13:58:29 +02:00
font-size: 0.875rem;
font-weight: 500;
2022-01-23 21:42:49 +01:00
}
2022-01-24 12:50:54 +01:00
.input-container {
2022-04-15 13:58:29 +02:00
font-size: 0.875rem;
font-weight: 500;
2022-01-24 12:50:54 +01:00
padding-bottom: 0.25rem;
2022-01-23 21:42:49 +01:00
}
#minValueLength {
width: 3rem;
}
}
.buttons {
display: flex;
flex-flow: column;
padding: 0.5rem 0 1rem;
.button-container {
padding: 0.25rem 0;
}
button {
border: none;
cursor: pointer;
color: $ultra-black-color;
padding: 0;
display: flex;
flex-wrap: nowrap;
line-height: 1.25rem;
background: #fff;
width: 100%;
&:hover {
color: #000;
text-decoration: underline;
svg path {
fill: #000;
}
}
&:disabled {
cursor: not-allowed;
color: $disabled-grey;
svg path {
fill: $disabled-grey;
}
}
span {
padding-left: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
}
}
}
2022-01-23 21:42:49 +01:00
}