Files
roll20-character-sheets/kitchensink/kitchensink.css
T
clevett c90cea0d75 Updated to new standards
Kitchen sink needed some updates after five years.
2018-10-11 10:43:57 -05:00

66 lines
1013 B
CSS

/* Set the min-width so that when the window is resized the look will stay consistant */
.charsheet {
background-color: #ddd;
min-width: 800px;
}
/* Universal styling applied to all elements of these types */
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: vertical;
}
/* Targetted styling that only effects elements with these classes */
input.sheet-short {
width: 17%;
}
select.sheet-dtype {
vertical-align: top;
width: 60px;
}
span.sheet-dee {
font-size: 1.4em;
font-weight: bold;
left: -36%;
padding-right: 4px;
position: relative;
top: 3px;
}
/* Targetted styling that only effects elements contained within the stated class */
.sheet-stats h3 {
display: inline-block;
text-align: left;
}
.sheet-stats h3:first-child {
margin-left: 35%;
margin-right: 15%;
}
.sheet-stats input {
margin-right: 8%;
width: 17%;
}