some work done on character sheets

This commit is contained in:
2025-08-22 13:01:58 -07:00
parent 5c3d34aafa
commit 621d65b9e5
10 changed files with 165 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ div#root {
display: flex;
width: 100%;
height: 100%;
z-index: 0;
font-family: sans-serif;
}
@@ -73,4 +74,39 @@ div.log-tick {
div.log-msg {
margin-left: 0.2em;
}
div#charsheet {
display: flex;
flex-direction: row;
width: 100%;
background-color: rgb(240, 240, 240);
}
div#charsheet-leftside {
display: flex;
flex-direction: column;
}
div#charsheet-rightside {
display: flex;
flex-direction: column;
}
div.attr {
font-size: larger;
}
div#modal-background {
z-index: -10;
background-color: rgba(0, 0, 0, 168);
visibility: hidden;
}
div#modal {
width: 90%;
height: 90%;
border: 1.25em double rgba(192, 192, 192, 255);
background-color: rgba(255, 255, 255, 255);
}