This commit is contained in:
2025-09-09 00:10:53 +03:00
parent 38f2a05107
commit 204fc092d7
239 changed files with 22447 additions and 9536 deletions

View File

@@ -0,0 +1,56 @@
.page-options {
position: relative;
width: calc(100% - 40px);
display: flex;
flex-direction: column;
margin: 20px 20px 0 20px;
}
.page-options>.option {
text-align: left;
font-weight: 400;
padding: 20px;
margin: 0 0 15px;
border-radius: 15px;
font-size: var(--FontSize5);
background: var(--ColorThemes1);
color: var(--ColorThemes3);
border: 1px solid var(--ColorThemes2);
box-shadow: var(--shadow-l1);
display: flex;
flex-direction: column;
align-items: flex-start;
}
.page-options>.option>label {
display: flex;
justify-content: flex-start;
flex-direction: row;
font-size: var(--FontSize1);
font-weight: 500;
margin: 5px 0;
width: 100%;
}
.page-options>.option>select {
width: 100%;
min-width: 140px;
padding: 0 5px;
border-radius: calc(var(--border-radius) - 5px - 4px);
height: 30px;
background-color: var(--ColorThemes0);
color: var(--ColorThemes3);
}
.page-options>.option>.custom-checkbox+label {
font-size: var(--FontSize4);
font-weight: 400;
width: 100%;
display: flex;
align-items: center;
user-select: none;
flex-direction: row-reverse;
justify-content: space-between;
cursor: pointer;
margin: 5px 0;
}