куча мелких изменений в вебе

This commit is contained in:
2024-11-07 18:07:06 +03:00
parent 4a293e10f6
commit fae7a2ffc8
5 changed files with 161 additions and 47 deletions

View File

@@ -52,12 +52,15 @@
}
.tabs-item-flex-container > *, .settings-set-container {
padding: 1em;
margin: 1em;
border: 1px solid var(--text-color2);
border-radius: 0.2em;
}
.settings-set-container {
padding: 1em;
}
.tabs-item-flex-container th {
text-align: left;
padding-right: 1em;
@@ -69,29 +72,39 @@
margin-top: 0;
}
form label * {
.settings-set-container > h3 {
margin: 0;
}
.settings-set-container label * {
display: block;
}
form label {
.settings-set-container label {
margin: 1em 0;
display: block;
background: var(--bg-selected);
/*background: var(--bg-selected);*/
color: var(--text-color2);
}
form input {
.settings-set-container input, .settings-set-container select {
margin-top: 0.5em;
border: none;
border-bottom: solid 2px var(--text-color);
width: 100%;
width: 20em;
box-sizing: border-box;
}
form input:focus {
.settings-set-container input:focus {
outline: none;
border: none;
border-bottom: solid 2px var(--brand-text);
}
/* костыль для браузеров, которые некорректно стилизуют элементы option */
select * {
background: var(--bg-selected);
color: var(--text-color);
}
/*********************** Стили для красивых 'switch' ***********************/
.toggle-input {