80 lines
1.5 KiB
SCSS
80 lines
1.5 KiB
SCSS
|
|
@use 'mixins';
|
||
|
|
|
||
|
|
.character-page {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 24px;
|
||
|
|
padding: 10px 24px;
|
||
|
|
overflow-y: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.prepared-spells, .attunements {
|
||
|
|
h6 {
|
||
|
|
font-size: 1.1em;
|
||
|
|
margin: 0 0 10px;
|
||
|
|
font-weight: 900;
|
||
|
|
&::first-letter {
|
||
|
|
text-decoration: underline crimson;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.prepared-slot, .attunement-slot {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
padding: 4px 0;
|
||
|
|
|
||
|
|
input {
|
||
|
|
flex: 1;
|
||
|
|
max-width: 340px;
|
||
|
|
border: none;
|
||
|
|
color: white;
|
||
|
|
background: rgba(255, 255, 255, 0.06);
|
||
|
|
padding: 3px 8px;
|
||
|
|
|
||
|
|
&:focus {
|
||
|
|
outline: 1px solid crimson;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
@include mixins.button;
|
||
|
|
width: 34px;
|
||
|
|
height: 30px;
|
||
|
|
border: 0;
|
||
|
|
line-height: 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.prepared-slot {
|
||
|
|
&.occupied {
|
||
|
|
.spell-name {
|
||
|
|
font-weight: 900;
|
||
|
|
min-width: 200px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.spell-level, .spell-desc {
|
||
|
|
font-weight: 300;
|
||
|
|
opacity: 0.75;
|
||
|
|
font-size: 0.85em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.spell-level {
|
||
|
|
min-width: 44px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.attuned-item {
|
||
|
|
font-weight: 900;
|
||
|
|
min-width: 200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.add-slot {
|
||
|
|
@include mixins.button;
|
||
|
|
margin-top: 10px;
|
||
|
|
border: 0;
|
||
|
|
padding: 3px 14px;
|
||
|
|
}
|
||
|
|
}
|