mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
302 lines
5.5 KiB
CSS
302 lines
5.5 KiB
CSS
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:900|Pirata+One&display=swap");
|
|
|
|
|
|
.repitem {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 3px;
|
|
justify-content: space-between;
|
|
}
|
|
.sheet-ability-value, .sheet-ability-button {
|
|
display: inline-block !important;
|
|
}
|
|
.sheet-flex-between {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.sheet-flex {
|
|
display: flex;
|
|
align-items: start;
|
|
}
|
|
.sheet-noborder, .sheet-thick-border {
|
|
padding: 15px;
|
|
}
|
|
.sheet-thick-border {
|
|
box-sizing: border-box;
|
|
border: 4px solid;
|
|
overflow: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.sheet-thick-border h3 {
|
|
font-family: "Pirata One";
|
|
font-size: 30px;
|
|
}
|
|
|
|
.sheet-col-left {
|
|
width: 48%;
|
|
min-width: 250px;
|
|
}
|
|
.sheet-col-right {
|
|
width: 51%;
|
|
min-width: 250px;
|
|
}
|
|
input {
|
|
border-radius: 0;
|
|
border: 1px solid;
|
|
}
|
|
input[type=number] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
input[type=number]::-webkit-outer-spin-button,.charsheet input[type=number]::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.sheet-info-name {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sheet-bottom-line {
|
|
border: none;
|
|
border-bottom: 1px solid;
|
|
}
|
|
|
|
.sheet-ability-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px; /* Adjust gap as needed */
|
|
}
|
|
|
|
.sheet-ability {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.sheet-ability span {
|
|
flex: 1;
|
|
}
|
|
|
|
.sheet-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.sheet-info span {
|
|
flex: 1;
|
|
}
|
|
|
|
|
|
.sheet-ability input,
|
|
.sheet-ability button {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.sheet-ability input[type="number"] {
|
|
width: 50px; /* Adjust width as needed */
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-exp {
|
|
width: 33%;
|
|
text-align: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
input[type=number].sheet-ability-modifier {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 20px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
.sheet-subtext {
|
|
width: 138px;
|
|
}
|
|
input[type=number].sheet-ability-value {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
margin: 6px auto;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
}
|
|
input[type=number].sheet-experiance-value {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 20px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
margin: 6px auto;
|
|
}
|
|
|
|
button[type=roll].sheet-ability-button {
|
|
width: 40px;
|
|
height: 40px;
|
|
font-size: 26px;
|
|
background-color: white;
|
|
background-image: none;
|
|
color: black;
|
|
text-shadow: none;
|
|
margin: auto;
|
|
display: block;
|
|
}
|
|
|
|
.sheet-equipment-name {
|
|
width: 88%;
|
|
padding-left: 4px;
|
|
}
|
|
.sheet-equipment {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-content: start;
|
|
}
|
|
.sheet-equipment .repcontainer {
|
|
width: 100%;
|
|
order: 2;
|
|
}
|
|
|
|
.sheet-equipment h3 {
|
|
|
|
padding-bottom:1rem;
|
|
font-size:30px;
|
|
order: 1;
|
|
}
|
|
|
|
.sheet-ability-column h2 {
|
|
font-family: "Pirata One";
|
|
font-size: 20px;
|
|
width: 100px; /* Adjust this width as necessary */
|
|
text-align: left;
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.sheet-exp h2{
|
|
font-family: "Pirata One";
|
|
font-size: 20px;
|
|
width: 40px; /* Adjust this width as necessary */
|
|
text-align: center;
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.sheet-equipment-name {
|
|
width: 65%;
|
|
}
|
|
.sheet-equipment .repcontrol {
|
|
order: 4;
|
|
width: 100%;
|
|
}
|
|
input[type=number].sheet-encumbrance,select.sheet-skillvalue {
|
|
width: 45px;
|
|
text-align: center;
|
|
}
|
|
.sheet-encumbrance-total .sheet-encumbrance {
|
|
font-weight: bold;
|
|
}
|
|
.sheet-encumbrance-total {
|
|
font-weight: bold;
|
|
align-items: center;
|
|
margin: 5px 0;
|
|
padding-top: 3px;
|
|
order: 3;
|
|
width: 100%;
|
|
}
|
|
.sheet-top-line {
|
|
border-top: 2px solid black;
|
|
}
|
|
|
|
.sheet-rep-title {
|
|
text-align: center;
|
|
padding: 2px 0;
|
|
font-weight: bold;
|
|
align-items: center;
|
|
margin-bottom: 3px;
|
|
}
|
|
.sheet-weapon-name {
|
|
width: 65%;
|
|
}
|
|
.sheet-damage {
|
|
width: 55px;
|
|
vertical-align: top;
|
|
}
|
|
button[type=roll].sheet-attack-button {
|
|
width: 30px;
|
|
height: 28px;
|
|
font-size: 20px;
|
|
background-color: white;
|
|
background-image: none;
|
|
color: black;
|
|
margin-right: 0;
|
|
text-Shadow: none;
|
|
}
|
|
.sheet-dummy-attack-button {
|
|
width: 30px;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
|
|
|
|
/* Roll Templates */
|
|
.sheet-rolltemplate-ito-save .sheet-template-container {
|
|
border: 2px solid #000;
|
|
border-radius: 5px;
|
|
padding: 10px;
|
|
margin: 5px 0;
|
|
font-family: "Nunito Sans", sans-serif;
|
|
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .sheet-template-header {
|
|
background-color: #000;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .sheet-template-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .template_label {
|
|
font-weight: bold;
|
|
width: 50%;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .template_value {
|
|
width: 50%;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .sheet-template-success,
|
|
.sheet-rolltemplate-ito-save .sheet-template-failure {
|
|
text-align: center;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .sheet-template-success {
|
|
background-color: #DFF0D8;
|
|
color: #3C763D;
|
|
}
|
|
|
|
.sheet-rolltemplate-ito-save .sheet-template-failure {
|
|
background-color: #F2DEDE;
|
|
color: #A94442;
|
|
} |