mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-31 12:12:30 +00:00
45 lines
1.1 KiB
CSS
45 lines
1.1 KiB
CSS
.ui-dialog .tab-content .charsheet .biography {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
background: var(--img-parchment);
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
padding: 1rem 2rem;
|
|
}
|
|
.ui-dialog .tab-content .charsheet .bioTabs {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
place-items: flex-end;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
.ui-dialog .tab-content .charsheet .repeating_reputation + div .repitem {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
.ui-dialog .tab-content .charsheet .repeating_reputation + div .repitem input:first-of-type {
|
|
-webkit-box-flex: 2;
|
|
-ms-flex: 2;
|
|
flex: 2;
|
|
}
|
|
.ui-dialog .tab-content .charsheet .repeating_reputation + div .repitem input[list] {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
width: 120px;
|
|
}
|
|
.ui-dialog .tab-content .charsheet .repeating_personality + div .repitem {
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
margin: 8px 0px;
|
|
} |