All checks were successful
Release Creation / build (release) Successful in 53s
118 lines
2.2 KiB
Plaintext
118 lines
2.2 KiB
Plaintext
.sheet-common() {
|
|
font-family: var(--font-primary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
color: var(--color-dark-1);
|
|
background-image: var(--background-image-base);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
|
|
nav.tabs [data-tab] {
|
|
color: #636060;
|
|
}
|
|
|
|
nav.tabs [data-tab].active {
|
|
color: #252424;
|
|
}
|
|
|
|
input:disabled,
|
|
select:disabled {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
border-color: transparent;
|
|
color: var(--color-dark-3);
|
|
}
|
|
|
|
input,
|
|
select {
|
|
height: 1.5rem;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
border-color: var(--color-dark-6);
|
|
color: var(--color-dark-2);
|
|
}
|
|
|
|
input[name="name"] {
|
|
height: 2.5rem;
|
|
margin-right: 4px;
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
border: none;
|
|
}
|
|
|
|
fieldset {
|
|
margin-bottom: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.form-fields {
|
|
input,
|
|
select {
|
|
text-align: center;
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
select {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
}
|
|
}
|
|
|
|
legend {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
font-weight: bold;
|
|
letter-spacing: 1px;
|
|
}
|
|
}
|
|
|
|
.character-sheet-common {
|
|
label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1.2);
|
|
}
|
|
}
|
|
|
|
.item-sheet-common {
|
|
.form-fields {
|
|
padding-top: 4px;
|
|
}
|
|
|
|
overflow: auto;
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: row;
|
|
label {
|
|
align-content: center;
|
|
min-width: 10rem;
|
|
max-width: 10rem;
|
|
}
|
|
select,
|
|
input {
|
|
text-align: left;
|
|
min-width: 12rem;
|
|
max-width: 12rem;
|
|
}
|
|
input[type="checkbox"] {
|
|
min-width: 1.2rem;
|
|
max-width: 1.2rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
}
|
|
|
|
label {
|
|
font-family: var(--font-secondary);
|
|
font-size: calc(var(--font-size-standard) * 1);
|
|
flex: 50%;
|
|
}
|
|
|
|
.align-top {
|
|
align-self: flex-start;
|
|
padding: 0.1rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
|
|
.shift-right {
|
|
margin-left: 2rem;
|
|
}
|
|
}
|