taf/styles/Apps/PlayerSheet.css
2025-07-02 22:48:49 -06:00

57 lines
826 B
CSS

.taf.PlayerSheet {
.sheet-header, fieldset, .content {
border-radius: 8px;
border: 1px solid rebeccapurple;
}
.sheet-header {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.5rem;
padding: 4px;
img {
border-radius: 4px;
}
}
.attributes {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
gap: 0.5rem;
}
.attr-range {
display: flex;
flex-direction: row;
align-items: center;
gap: 4px;
width: 100px;
> input {
text-align: center;
}
}
.content {
flex-grow: 1;
overflow: hidden;
--table-row-color-odd: var(--table-header-bg-color);
&:not(:has(> prose-mirror)) {
padding: 0.5rem;
}
}
prose-mirror {
height: 100%;
menu {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
}