2022-11-28 22:14:19 +00:00
|
|
|
.settingsList {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: table;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='checkbox'] {
|
|
|
|
& + label {
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background: url('/icons/checkbox-big.svg') no-repeat;
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
height: 2.8rem;
|
|
|
|
position: static;
|
|
|
|
width: 2.8rem;
|
2022-11-28 22:14:19 +00:00
|
|
|
vertical-align: bottom;
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked + label {
|
|
|
|
&::before {
|
|
|
|
background-image: url('/icons/checkbox-checked-big.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.notifications-checkbox {
|
|
|
|
& + label {
|
|
|
|
&::before {
|
|
|
|
background: url('/icons/checkbox-notifications.svg') no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:checked + label {
|
|
|
|
&::before {
|
|
|
|
background-image: url('/icons/checkbox-notifications-checked.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-28 22:14:19 +00:00
|
|
|
.settingsListRow {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
|
2022-11-28 22:14:19 +00:00
|
|
|
.settingsListCell {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: table-cell;
|
|
|
|
padding: 0 0.5em 1em 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-right: 2em;
|
|
|
|
}
|
|
|
|
}
|