mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
80 lines
974 B
CSS
80 lines
974 B
CSS
.sheet-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.charsheet {
|
|
min-width: 800px;
|
|
}
|
|
|
|
.sheet-justify-center {
|
|
justify-content: center;
|
|
}
|
|
|
|
.sheet-align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.sheet-align-around {
|
|
align-items: space-around;
|
|
}
|
|
|
|
.sheet-align-end {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.sheet-myRow {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.sheet-lilMargin {
|
|
margin: 15px 0px;
|
|
}
|
|
|
|
.sheet-forty-width {
|
|
width: 40%;
|
|
}
|
|
|
|
.sheet-one-third {
|
|
width: 33%;
|
|
}
|
|
|
|
.sheet-quarter {
|
|
width: 25%;
|
|
}
|
|
|
|
.sheet-rolltemplate-container {
|
|
align-items: center;
|
|
border-radius: 0.25rem;
|
|
border: 2px black solid;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: "Shadows Into Light";
|
|
padding: 8px;
|
|
}
|
|
|
|
thead {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
th {
|
|
text-align: center;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
border: 1px solid black;
|
|
text-align: center;
|
|
}
|