mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
57 lines
781 B
CSS
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;
|
|
}
|