mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-11 09:32:33 +00:00
70 lines
1001 B
CSS
70 lines
1001 B
CSS
.charsheet {
|
|
font-family: "Microsoft JhengHei", "MingLiU", "Apple LiSung" !important;
|
|
background: red;
|
|
color: #222222;
|
|
background-image: url("https://pbs.twimg.com/media/FyhXR5RWcAEsudX?format=png&name=large");
|
|
background-size: 100% auto;
|
|
}
|
|
|
|
|
|
.charsheet .sheet-item {
|
|
padding: 1vh;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.charsheet label {
|
|
font-size: inherit;
|
|
color: inherit;
|
|
}
|
|
|
|
.charsheet .sheet-col{
|
|
background: #E6E6E3;
|
|
}
|
|
|
|
.charsheet body
|
|
{
|
|
color:white
|
|
}
|
|
|
|
.charsheet div
|
|
{
|
|
color:white
|
|
}
|
|
|
|
.charsheet h3
|
|
{
|
|
color:white
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
|
|
/* Centered text */
|
|
.centered {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
/*----------- Details and Summary -------*/
|
|
.charsheet summary {
|
|
cursor: pointer;
|
|
display: revert;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
}
|
|
|
|
.column {
|
|
flex: 50%;
|
|
float: left;
|
|
width: 50%;
|
|
} |