230 lines
3.3 KiB
CSS
230 lines
3.3 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
--ink: #214f44;
|
|
--ink-soft: #4d6d66;
|
|
--surface: #fffdfa;
|
|
--surface-2: #f2f7f3;
|
|
--line: #d7e3dc;
|
|
--accent: #255f4a;
|
|
--accent-soft: #dfeee6;
|
|
--warn: #9f5f0e;
|
|
--error: #9f2f2f;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font: 14px/1.4 "Noto Sans", "Liberation Sans", sans-serif;
|
|
color: var(--ink);
|
|
background:
|
|
radial-gradient(circle at top right, #ecf5ef, transparent 38%),
|
|
linear-gradient(180deg, #f8fbf8, #eef4f0);
|
|
}
|
|
|
|
body.popup {
|
|
min-width: 360px;
|
|
}
|
|
|
|
.surface {
|
|
padding: 16px;
|
|
}
|
|
|
|
.topbar {
|
|
display: flex;
|
|
align-items: start;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 22px;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 14px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
margin-bottom: 8px;
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.subtle {
|
|
color: var(--ink-soft);
|
|
}
|
|
|
|
.status-card {
|
|
padding: 12px 14px;
|
|
border-radius: 12px;
|
|
border: 1px solid var(--line);
|
|
background: var(--surface);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.status-card[data-tone="ready"] {
|
|
border-color: #c5dccf;
|
|
background: var(--accent-soft);
|
|
}
|
|
|
|
.status-card[data-tone="warning"] {
|
|
border-color: #e4d0ae;
|
|
background: #fbf4e7;
|
|
}
|
|
|
|
.status-card[data-tone="error"] {
|
|
border-color: #e4bcbc;
|
|
background: #fcf1f1;
|
|
}
|
|
|
|
.inline-hint {
|
|
margin: -6px 0 16px;
|
|
}
|
|
|
|
.match-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.search-section {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.save-card {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
margin: 0 0 16px;
|
|
border: 1px solid #c5dccf;
|
|
border-radius: 12px;
|
|
background: var(--accent-soft);
|
|
}
|
|
|
|
.search-form {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
gap: 8px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.match-row,
|
|
button,
|
|
.link-button {
|
|
appearance: none;
|
|
border: 0;
|
|
border-radius: 12px;
|
|
background: var(--surface);
|
|
color: var(--ink);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.match-row {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 12px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--line);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.match-row:hover,
|
|
button:hover,
|
|
.link-button:hover {
|
|
background: var(--surface-2);
|
|
}
|
|
|
|
.match-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: start;
|
|
text-align: left;
|
|
}
|
|
|
|
.quality {
|
|
font-size: 12px;
|
|
color: var(--ink-soft);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.settings {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.settings-form {
|
|
display: grid;
|
|
gap: 16px;
|
|
}
|
|
|
|
label {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
input,
|
|
textarea,
|
|
select {
|
|
width: 100%;
|
|
padding: 10px 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 10px;
|
|
background: #fff;
|
|
color: var(--ink);
|
|
font: inherit;
|
|
}
|
|
|
|
fieldset {
|
|
margin: 0;
|
|
padding: 12px;
|
|
border: 1px solid var(--line);
|
|
border-radius: 12px;
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
legend {
|
|
padding: 0 6px;
|
|
color: var(--ink-soft);
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.checkbox-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.checkbox-row input {
|
|
width: auto;
|
|
}
|
|
|
|
button,
|
|
.link-button {
|
|
padding: 10px 14px;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
justify-content: end;
|
|
}
|