Initial commit: Fresh start with current state

This commit is contained in:
Claude Code
2025-11-06 14:04:48 +01:00
commit 15355c35ea
20152 changed files with 1191077 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
.app.pf1.health-config form {
nav.tabs {
font-size: var(--font-size-14);
line-height: 32px;
border-bottom: 1px solid var(--color-border-dark-primary);
}
.hitdice-table {
display: grid;
grid-template: 32px 1fr 1fr 1fr e("/") 1fr 1fr 1fr 1fr;
text-align: center;
vertical-align: middle;
padding: 5px 0;
align-items: center;
> * {
display: inline-flex;
align-items: center;
height: 100%;
padding: 5px;
border-bottom: 1px solid var(--color-border-dark-primary);
}
> span {
justify-content: center;
}
.table-header {
color: var(--color-text-light-highlight);
background: var(--pf1-dim-bg);
font-weight: bold;
text-shadow: 1px 1px black;
justify-content: center;
&.index {
justify-content: left;
}
}
.switch > label {
flex: 1;
}
.switch-check {
display: none;
}
.switch-label > span {
display: block;
border: 1px solid var(--color-border-dark-primary);
border-radius: 4px;
cursor: pointer;
margin: auto;
padding: 2px;
width: calc(100% - 2px);
}
.switch-label > span.switch-auto {
background-color: var(--pf1-dim-bg);
color: var(--color-text-light-highlight);
}
.switch-check:not(:checked) + .switch-label .switch-auto {
display: none;
}
.switch-check:checked + .switch-label .switch-manual {
display: none;
}
.switch-label > span {
display: block;
border: 1px solid var(--color-border-dark-primary);
border-radius: 4px;
cursor: pointer;
margin: auto;
padding: 2px;
width: calc(100% - 2px);
text-align: center;
}
}
}