Minor fixes

This commit is contained in:
2024-12-17 07:09:20 +01:00
parent 4e6abebd70
commit 9dfe08b8a4
1402 changed files with 333918 additions and 140 deletions

View File

@ -128,30 +128,96 @@
width: 70px;
}
}
.experience {
display: flex;
align-items: center;
gap: 10px;
margin-left: 10px;
input {
display: flex;
width: 70px;
font-size: calc(var(--font-size-standard) * 1.4);
align-items: center;
justify-content: center;
padding: 0 5px 0 5px;
}
}
.character-challenges {
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
.character-challenge {
display: flex;
align-items: center;
margin-right: 1rem;
.rollable:hover,
.rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.name {
flex: 1;
min-width: 3rem;
margin-left: 0.5rem;
}
.form-group {
flex: 1;
padding-left: 5px;
.form-fields {
flex: none;
width: 50px;
}
input[type="number"] {
text-align: center;
}
}
}
.character-movements {
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
.character-movement {
display: flex;
align-items: center;
margin-right: 1rem;
.rollable:hover,
.rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.name {
flex: 1;
min-width: 3rem;
margin-left: 0.5rem;
}
.form-group {
flex: 1;
padding-left: 5px;
.form-fields {
flex: none;
width: 50px;
}
input[type="checkbox"] {
width: 20px;
}
input[type="checkbox"]:checked {
background-color: rgba(0, 0, 0, 0.1);
}
input[type="checkbox"]:checked::after {
color: rgba(0, 0, 0, 0.1);
}
}
}
.character-saves {
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
.character-save {
display: flex;
align-items: center;
margin-right: 1rem;
.rollable:hover,
.rollable:focus {
text-shadow: 0 0 8px var(--color-shadow-primary);
cursor: pointer;
}
.name {
flex: 1;
min-width: 3rem;
margin-left: 0.5rem;
}
.form-group {
flex: 1;
padding-left: 5px;
.form-fields {
flex: none;
width: 50px;
}
}
}