mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 13:12:31 +00:00
115 lines
1.8 KiB
CSS
115 lines
1.8 KiB
CSS
.charsheet {
|
|
min-width: 890px;
|
|
}
|
|
|
|
/* Universal styling applied to all elements of these types */
|
|
|
|
h2 {
|
|
font-size: 1.4em;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
width: 31%;
|
|
}
|
|
|
|
label.sheet-largue {
|
|
display: inline-block;
|
|
width: 55%;
|
|
}
|
|
|
|
input {
|
|
display: inline-block;
|
|
width: 165px;
|
|
}
|
|
|
|
img {
|
|
max-height: 100px;
|
|
padding-left: 31%;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
select {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 165px;
|
|
}
|
|
|
|
/* Targetted styling that only effects elements with these classes */
|
|
input.sheet-short {
|
|
width: 17%;
|
|
}
|
|
|
|
input.sheet-extralargue{
|
|
width: 50%;
|
|
}
|
|
|
|
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%;
|
|
}
|
|
|
|
/*Custom styles*/
|
|
.sheet-logo{
|
|
padding-left: 33%;
|
|
width: 33%;
|
|
}
|
|
|
|
/* Custom rolltemplate style*/
|
|
/*
|
|
.sheet-rolltemplate-evaluate table {
|
|
width: 100%;
|
|
background-color: white;
|
|
border: 1px solid rgba(112,32,130,1);
|
|
}
|
|
|
|
.sheet-rolltemplate-evaluate caption {
|
|
background-color: rgba(112,32,130,1);
|
|
color: white;
|
|
font-family: "Helvetica Neue",Helvetica,sans-serif;
|
|
font-weight: 300;
|
|
font-size: 1.1em;
|
|
padding: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-evaluate td:first-child {
|
|
font-weight: bold;
|
|
text-align: right;
|
|
min-width: 50px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-evaluate td {
|
|
padding: 5px;
|
|
line-height: 1.4em;
|
|
vertical-align: top;
|
|
}/*/ |