Files
roll20-character-sheets/Spirit_of_77/Spirit_of_77.css
T
dfrasier77 a2570df961 New character sheet for Spirit of 77 Game (#7258)
This adds a new character sheet for the Spirit of 77 Game.
2020-08-24 10:55:48 -05:00

57 lines
781 B
CSS

.charsheet {
background-color: #fff;
min-width: 800px;
}
/* Universal styling applied to all elements of these types */
div {
margin: 0px;
padding: 0px;
}
h2 {
font-size: 2em;
margin-bottom: 10px;
text-align: center;
}
label {
display: inline-block;
width: 31%;
}
input {
display: inline-block;
width: 165px;
}
img {
max-height: 100px;
}
textarea {
resize: both;
width: 450px;
height:50px;
}
input[type=number] {
width: 50px;
}
/* Custom styling applied to all elements of these classes */
/*Configure the tab buttons*/
.sheet-character,
.sheet-config {
display: none;
}
/* show the selected tab */
.sheet-tabstoggle[value="character"] ~ div.sheet-character,
.sheet-tabstoggle[value="configuration"] ~ div.sheet-config {
display: block;
}