Themes: add themes page

This commit is contained in:
He4eT 2023-05-28 02:22:05 +03:00 committed by Alexey
commit fd49342e12
7 changed files with 149 additions and 8 deletions

View file

@ -22,8 +22,9 @@ html, body {
justify-content: center;
align-items: center;
background-color: var(--bg-color);
color: var(--main-color);
background-color: var(--bg-color);
transition: background-color 0.2s ease;
/* Fix for Jumping Scrollbar Issue */
padding-left: calc(100vw - 100%);
@ -72,11 +73,6 @@ summary:hover {
background: var(--main-color);
}
input::placeholder {
color: var(--main-color);
opacity: 0.8;
}
ul {
list-style: square;
}
@ -87,6 +83,23 @@ hr {
border-top: 2px solid var(--main-color);
}
/* */
input::placeholder {
color: var(--main-color);
opacity: 0.8;
}
button {
border: 2px solid var(--main-color);
background-color: var(--bg-color);
color: var(--main-color);
padding: var(--inner-padding);
font-family: inherit;
font-size: inherit;
cursor: pointer;
}
/* */
.status {