feature/css #29

Merged
valberg merged 11 commits from feature/css into main 2024-02-29 20:02:40 +00:00
4 changed files with 1 additions and 2085 deletions
Showing only changes of commit 4ef7f4e8b9 - Show all commits

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -46,7 +46,6 @@ h6 {
/* Variables */
:root {
color-scheme: light dark;
/* Colors */
--light: #ffffff;
--light-dust: #fefef9;
@ -388,6 +387,7 @@ input[type="email"] {
padding: 8px;
background: var(--light-dust);
width: 100%;
color : var(--dark);
}
form fieldset {
@ -396,8 +396,6 @@ form fieldset {
margin: 0;
}
form div.buttonHolder {}
form div.buttonHolder button {
display: inline-block;
}
@ -533,59 +531,3 @@ span.time_remaining {
.pagination .page-item.disabled .page-link {
cursor: default;
}
/*
@media (prefers-color-scheme: dark) {
body {
background: var(--dark-dark);
color: var(--medium-dust)
}
h1,
h2,
h3,
h4,
h5,
h6,
footer,
nav ol li a {
color: var(--medium-dust);
}
nav ol li a:not(.current):hover {
border-color: var(--medium-dust);
}
header,
main aside,
nav {
background: #1d1d1d;
}
nav {
border: none;
}
hr {
border-color: var(--twilight);
}
main aside div,
article div.content-view {
background: var(--dark-twilight);
}
article table tbody {
background: var(--dark-twilight);
}
article table tbody tr:nth-child(2n+1) {
background: var(--dark);
}
article table tbody tr:nth-child(2n+1) td {
border-top: 1px solid var(--dark-dark);
border-bottom: 1px solid var(--dark-dark);
}
}
*/