2025-12-04 15:03:29 +01:00
|
|
|
body,
|
|
|
|
|
html {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2025-11-24 17:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
|
|
|
|
margin: 0;
|
2025-11-24 17:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
input,
|
|
|
|
|
select {
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
border-radius: var(--border-radius);
|
2025-11-24 17:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
button {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
2025-11-24 17:30:36 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
:root {
|
|
|
|
|
--color-panel-bg: #e8e6e5;
|
|
|
|
|
--color-browngray-050: #f5f3f0;
|
|
|
|
|
--color-browngray-200: #d0c4ba;
|
|
|
|
|
--color-browngray-300: #b5a9a1;
|
|
|
|
|
--border-radius: 0.2rem;
|
2025-12-04 16:14:50 +01:00
|
|
|
--space-xs: 0.5rem;
|
2025-12-05 15:05:24 +01:00
|
|
|
--curve: cubic-bezier(0.86, 0, 0.07, 1);
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body,
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6,
|
|
|
|
|
p,
|
|
|
|
|
a,
|
|
|
|
|
input,
|
|
|
|
|
select,
|
|
|
|
|
figcaption,
|
|
|
|
|
label {
|
|
|
|
|
font-family: sans-serif;
|
2025-11-24 17:30:36 +01:00
|
|
|
}
|
2025-12-03 16:57:11 +01:00
|
|
|
|
|
|
|
|
/* PagedJS print styles */
|
|
|
|
|
@page {
|
|
|
|
|
size: A4;
|
|
|
|
|
margin: 20mm 15mm 26mm 15mm;
|
|
|
|
|
}
|
|
|
|
|
h2 {
|
|
|
|
|
-moz-column-break-before: page;
|
|
|
|
|
break-before: page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@page {
|
|
|
|
|
@bottom-center {
|
|
|
|
|
content: string(title);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.chapter > h2 {
|
|
|
|
|
string-set: title content(text);
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
select,
|
|
|
|
|
input[type=text],
|
|
|
|
|
input[type=number] {
|
|
|
|
|
background-color: var(--color-browngray-300);
|
2025-12-03 16:57:11 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
.field--view-only {
|
|
|
|
|
opacity: 0.3;
|
2025-12-03 16:57:11 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-05 18:21:54 +01:00
|
|
|
/* Label with CSS tooltip */
|
|
|
|
|
.label-with-tooltip {
|
|
|
|
|
-webkit-text-decoration: underline dotted;
|
|
|
|
|
text-decoration: underline dotted;
|
|
|
|
|
text-decoration-color: var(--color-browngray-200);
|
|
|
|
|
text-underline-offset: 2px;
|
|
|
|
|
cursor: help;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.label-with-tooltip::after {
|
|
|
|
|
content: attr(data-css);
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 100%;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
padding: 0.25rem 0.5rem;
|
|
|
|
|
background: var(--color-browngray-700);
|
|
|
|
|
color: var(--color-browngray-100);
|
|
|
|
|
font-family: "Courier New", Courier, monospace;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
transition: opacity 0.15s ease, visibility 0.15s ease;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
.label-with-tooltip:hover::after {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
.settings-section h2 {
|
|
|
|
|
border-bottom: 1px solid #000;
|
2025-12-04 16:14:50 +01:00
|
|
|
margin-bottom: var(--space-xs);
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection:not(:last-child) {
|
|
|
|
|
border-bottom: 1px solid var(--color-browngray-050);
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection {
|
2025-12-04 16:14:50 +01:00
|
|
|
padding: var(--space-xs) 0;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection h3 {
|
|
|
|
|
margin-bottom: var(--space-xs);
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2025-12-04 16:14:50 +01:00
|
|
|
.settings-section .settings-subsection .field label,
|
|
|
|
|
.settings-section .settings-subsection .field select {
|
2025-12-04 15:03:29 +01:00
|
|
|
width: 50%;
|
|
|
|
|
}
|
2025-12-04 16:14:50 +01:00
|
|
|
.settings-section .settings-subsection .field input {
|
|
|
|
|
padding: 0.1rem 0.1rem 0.1rem 0.3rem;
|
|
|
|
|
}
|
2025-12-04 15:03:29 +01:00
|
|
|
.settings-section .settings-subsection .field .input-with-unit {
|
|
|
|
|
display: flex;
|
2025-12-04 16:14:50 +01:00
|
|
|
gap: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field .input-with-unit .unit-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field .input-with-color {
|
|
|
|
|
width: 50%;
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field .input-with-color .clr-field {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field .input-with-color .clr-field button {
|
|
|
|
|
position: absolute;
|
|
|
|
|
transform: none;
|
2025-12-04 16:14:50 +01:00
|
|
|
height: 1.1rem;
|
2025-12-04 15:03:29 +01:00
|
|
|
top: auto;
|
|
|
|
|
right: auto;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection .field .input-with-color .clr-field input {
|
|
|
|
|
padding-left: 2.5rem;
|
2025-12-04 16:14:50 +01:00
|
|
|
width: 100%;
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection.margins {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2025-12-04 16:14:50 +01:00
|
|
|
row-gap: var(--space-xs);
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection.margins h3 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection.margins .field {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection.margins .field label {
|
2025-12-04 16:22:34 +01:00
|
|
|
width: 30%;
|
2025-12-04 15:03:29 +01:00
|
|
|
}
|
|
|
|
|
.settings-section .settings-subsection.margins .field .input-with-unit input {
|
|
|
|
|
width: 50%;
|
2025-12-03 16:57:11 +01:00
|
|
|
}
|
|
|
|
|
|
2025-12-04 15:03:29 +01:00
|
|
|
button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid var(--color-browngray-300);
|
|
|
|
|
color: var(--color-browngray-300);
|
2025-12-05 15:05:24 +01:00
|
|
|
background-color: var(--color-panel-bg);
|
2025-12-04 15:03:29 +01:00
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
padding: 0.1rem 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
button.active {
|
|
|
|
|
border: 1px solid #000;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
button.tab.active {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border: none;
|
2025-12-03 16:57:11 +01:00
|
|
|
}/*# sourceMappingURL=style.css.map */
|