Start updates to to options.html

This commit is contained in:
Lesley Norton
2021-11-27 12:05:59 -06:00
parent 09d9b05a93
commit 66359941bf
3 changed files with 126 additions and 50 deletions
+42 -7
View File
@@ -3,27 +3,62 @@ body {
color: #202023;
}
h3 {
h3:first-of-type {
margin-block-start: 2.5rem;
}
h3:first-of-type {
margin-block-start: 1rem;
label {
font-weight: bold;
display: flex;
align-items: flex-start;
}
p,
label {
label > span {
padding-block-start: 3px;
}
.settings-group {
margin-block-end: 16px;
}
form {
display: flex;
flex-direction: column;
}
p {
color: rgb(74, 74, 79);
}
.settings-group p {
margin-inline-start: 24px;
margin-block: 4px 8px;
}
input[type="checkbox"] {
margin-inline: 0 8px;
inline-size: 16px;
block-size: 16px;
}
button {
margin-inline: 0 auto;
}
.keyboard-shortcut {
display: flex;
flex-direction: row;
justify-content: space-between;
max-width: 70%;
}
@media (prefers-color-scheme: dark) {
body {
background: #202023;
color: #fff;
}
p,
label {
p {
color: rgb(177, 177, 179);
}
}