mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
891 lines
18 KiB
CSS
891 lines
18 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Pirata+One&family=UnifrakturCook:wght@700&display=swap');
|
|
|
|
/* TABS *//*
|
|
.sheet-character,
|
|
.sheet-property,
|
|
.sheet-notes {
|
|
display: none;
|
|
}*/
|
|
|
|
|
|
|
|
input[name="attr_sheetTab"][value="character"]~div.sheet-character,
|
|
input[name="attr_sheetTab"][value="property"]~div.sheet-property,
|
|
input[name="attr_sheetTab"][value="notes"]~div.sheet-notes {
|
|
display: flex !important;
|
|
}
|
|
|
|
.sheet-button-select {
|
|
gap: 3px;
|
|
}
|
|
|
|
.sheet-button-select button {
|
|
border: unset !important;
|
|
border-radius: 8px 8px 0px 0px;
|
|
font-family: "Pirata One";
|
|
color: #333;
|
|
background-color: #ccc;
|
|
text-transform: capitalize;
|
|
outline: unset !important;
|
|
padding: 5px 10px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.sheet-button-select button:focus {
|
|
outline: unset !important;
|
|
}
|
|
|
|
input[name="attr_sheetTab"][value="character"]~.sheet-button-select button[name="act_character"],
|
|
input[name="attr_sheetTab"][value="property"]~.sheet-button-select button[name="act_property"],
|
|
input[name="attr_sheetTab"][value="recipes"]~.sheet-button-select button[name="act_recipes"],
|
|
input[name="attr_sheetTab"][value="notes"]~.sheet-button-select button[name="act_notes"] {
|
|
background: #18282e !important;
|
|
color: #f9f9f9;
|
|
font-size: 15px;
|
|
}
|
|
/* END OF TABS */
|
|
|
|
/* OVERRIDE */
|
|
.ui-dialog .charsheet {
|
|
background-color: white;
|
|
background-image:url('https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Mythic-Bastionland/images/page bg.jpg');
|
|
background-size:cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_del {
|
|
font-family: "Pictos" !important;
|
|
}
|
|
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_add,
|
|
.ui-dialog .charsheet .repcontainer .repitem .itemcontrol .repcontrol_edit {
|
|
font-size: 10px !important;
|
|
}
|
|
|
|
.repcontrol {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* END OF OVERRIDE */
|
|
/* GENERAL */
|
|
.sheet-character div {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input {
|
|
width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
accent-color: #a7a984 !important;
|
|
font-family: "Alegreya";
|
|
font-size: 20px !important;
|
|
border: none !important;
|
|
background-color: transparent !important;
|
|
padding: unset !important;
|
|
min-width: 40px !important;
|
|
outline-color: #a7a984;
|
|
color: #434343;
|
|
}
|
|
|
|
textarea {
|
|
font-size: 16px !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
margin-bottom: unset;
|
|
background: unset;
|
|
border: unset;
|
|
border-radius: 0px;
|
|
resize: none;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: darkgray lightgray;
|
|
}
|
|
|
|
h3 {
|
|
text-align: center;
|
|
text-transform: capitalize;
|
|
box-sizing: border-box;
|
|
font-family: "Pirata One";
|
|
line-height: 33px;
|
|
color: #18282e;
|
|
}
|
|
|
|
label {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
padding: unset !important;
|
|
margin: unset !important;
|
|
gap: 10px;
|
|
box-sizing: border-box !important;
|
|
white-space: nowrap !important;
|
|
text-transform: capitalize !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
height: 33px;
|
|
font-size: 18px !important;
|
|
}
|
|
|
|
fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
select {
|
|
margin: unset !important;
|
|
box-sizing: border-box;
|
|
font-family: "Alegreya";
|
|
font-size: 18px;
|
|
padding: unset !important;
|
|
background-color: transparent !important;
|
|
border: unset !important;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
width: 15px !important;
|
|
}
|
|
|
|
.btn {
|
|
margin: 0px !important;
|
|
font-size: 13px !important;
|
|
line-height: 18px !important;
|
|
color: #333333 !important;
|
|
text-align: center !important;
|
|
text-shadow: 0 !important;
|
|
vertical-align: middle !important;
|
|
background-image: unset !important;
|
|
background-repeat: unset !important;
|
|
box-shadow: unset !important;
|
|
cursor: pointer !important;
|
|
padding: 4px 10px !important;
|
|
border-width: 2px !important;
|
|
border-color: #333333 !important;
|
|
box-sizing: border-box;
|
|
font-family: "Pirata One";
|
|
}
|
|
|
|
.virtues input,
|
|
.combat-line input,
|
|
.weapons input {
|
|
border-width: none;
|
|
}
|
|
|
|
.combat-line input,
|
|
.weapons input {
|
|
border-color: none;
|
|
}
|
|
/* END OF GENERAL */
|
|
|
|
/* SHEET-CHARACTER */
|
|
.sheet-character {
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.header {
|
|
flex: 4;
|
|
flex-direction: column;
|
|
padding: 15px 30px;
|
|
background-color: #18282e;
|
|
margin: -30px -30px 0px -30px;
|
|
}
|
|
|
|
.header-line {
|
|
flex-direction: row !important;
|
|
gap: 5px;
|
|
}
|
|
|
|
.header-line label {
|
|
flex: 1;
|
|
align-items: center !important;
|
|
text-align: center;
|
|
font-weight: normal;
|
|
box-sizing: border-box;
|
|
font-family: "Pirata One";
|
|
color: #548da3 !important;
|
|
font-size: 22px !important;
|
|
}
|
|
|
|
.header-line input {
|
|
font-size: 22px !important;
|
|
padding-bottom: 4px !important;
|
|
color: #f9f9f9;
|
|
font-weight: normal;
|
|
font-family: "Pirata One";
|
|
}
|
|
|
|
.virtues-armor-ability-and-passion {
|
|
padding-top: 10px;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
}
|
|
|
|
.virtues {
|
|
flex: 1;
|
|
justify-content: start;
|
|
margin: unset !important;
|
|
}
|
|
|
|
.virtues-container {
|
|
flex: 0;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.virtues-content {
|
|
flex-direction: column;
|
|
height: 197px;
|
|
width: 231px !important;
|
|
gap: 5px;
|
|
}
|
|
|
|
.virtues-line {
|
|
flex-wrap: nowrap !important;
|
|
background-color: #18282e;
|
|
padding: 0px 5px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.virtues-line label {
|
|
align-items: center !important;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
|
|
.virtues input {
|
|
width: 40px !important;
|
|
text-align: center;
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
|
|
#spirit-current {
|
|
margin-left: 8px !important;
|
|
}
|
|
|
|
#guard {
|
|
margin-top: 12px !important;
|
|
}
|
|
|
|
#guard label {
|
|
justify-content: space-between !important;
|
|
}
|
|
|
|
.armor {
|
|
flex: 1;
|
|
justify-content: center;
|
|
}
|
|
|
|
.armor-container {
|
|
flex: 0;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.armor-content {
|
|
flex-direction: column;
|
|
height: 180px;
|
|
width: 270px !important;
|
|
gap: 5px;
|
|
}
|
|
|
|
.armor-line {
|
|
align-items: center;
|
|
}
|
|
.armor_value{
|
|
max-width:40px;
|
|
}
|
|
|
|
.armor-line input {
|
|
padding: 0px 5px !important;
|
|
border: 2px solid #18282e !important;
|
|
font-size: 16px !important;
|
|
line-height: 170%;
|
|
}
|
|
|
|
.armor-content label {
|
|
background-color: #18282e !important;
|
|
border-radius: 2px;
|
|
color: #f9f9f9 !important;
|
|
align-items: center !important;
|
|
padding: 0px 5px !important;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.armor-total {
|
|
width: 33px !important;
|
|
background-color: #f9f9f9 !important;
|
|
text-align: center;
|
|
}
|
|
|
|
.ability-and-passion-container {
|
|
flex: 1;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.ability,
|
|
.passion {
|
|
background-color: #18282e !important;
|
|
color: #f9f9f9 !important;
|
|
font-family: "Pirata One";
|
|
text-align: center;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.ability-description {
|
|
height: 100px !important;
|
|
font-size: 15px !important;
|
|
line-height: 130%;
|
|
outline-color: #a7a984;
|
|
}
|
|
|
|
.passion-description {
|
|
height: 48px !important;
|
|
font-size: 15px !important;
|
|
line-height: 130%;
|
|
outline-color: #a7a984;
|
|
}
|
|
|
|
.armor-line {
|
|
flex-wrap: nowrap !important;
|
|
gap: 5px;
|
|
}
|
|
|
|
.weapons .repitem {
|
|
height: 33px;
|
|
}
|
|
|
|
.weapons {
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
|
|
.weapon-grid div {
|
|
flex-direction: column;
|
|
padding-top: 5px;
|
|
gap: 5px;
|
|
}
|
|
|
|
.weapon-grid label {
|
|
color: #f9f9f9 !important;
|
|
background-color: #18282e;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
#weapon-roll {
|
|
flex: 1 !important;
|
|
}
|
|
|
|
.weapon-roll-label {
|
|
border-radius: 2px 0px 0px 2px;
|
|
}
|
|
|
|
.weapon-damage-label {
|
|
border-radius: 0px 2px 2px 0px;
|
|
}
|
|
|
|
#weapon-roll label {
|
|
color: #18282e !important;
|
|
}
|
|
|
|
#weapon-roll button {
|
|
height: 26.5px;
|
|
background-color: #18282e;
|
|
color: #f9f9f9 !important;
|
|
border: unset !important;
|
|
font-size: 20px !important;
|
|
}
|
|
|
|
#weapon-roll button:hover,
|
|
.virtues-line button:hover {
|
|
background-color: #a7a984;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
|
|
#weapon-name {
|
|
flex: 7 !important;
|
|
}
|
|
|
|
#weapon-attack-type {
|
|
flex: 4 !important;
|
|
}
|
|
|
|
#weapon-damage {
|
|
flex: 2 !important;
|
|
}
|
|
|
|
#weapon-attack-type input,
|
|
#weapon-damage input {
|
|
text-align: center;
|
|
}
|
|
|
|
#weapon-name input {
|
|
padding-left: 10px !important;
|
|
}
|
|
|
|
.sheet-property-notes-container {
|
|
display: flex !important;
|
|
gap: 20px !important;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.sheet-property, .sheet-notes{
|
|
flex: 1 !important;
|
|
width: auto !important;
|
|
display: block !important;
|
|
}
|
|
.age_select{
|
|
color:white;
|
|
}
|
|
|
|
/* END OF SHEET-CHARACTER */
|
|
|
|
/* SHEET MODE DROPDOWN */
|
|
|
|
/* Container for dropdown positioning */
|
|
.ui-dialog .charsheet {
|
|
position: relative;
|
|
}
|
|
|
|
.sheet-mode-select {
|
|
position: absolute !important;
|
|
top: -10px !important;
|
|
right: -10px !important;
|
|
z-index: 1000;
|
|
width: 75px !important;
|
|
max-width: 75px !important;
|
|
background-color: #18282e !important;
|
|
color: #f9f9f9 !important;
|
|
height: 22px !important;
|
|
padding: 0 4px !important;
|
|
border: 2px solid #548da3 !important;
|
|
border-radius: 5px !important;
|
|
font-family: "Pirata One" !important;
|
|
font-size: 14px !important;
|
|
cursor: pointer;
|
|
appearance: auto;
|
|
}
|
|
|
|
.sheet-mode-select:hover {
|
|
background-color: #a7a984;
|
|
}
|
|
|
|
.sheet-mode-select option {
|
|
background-color: #18282e;
|
|
color: #f9f9f9;
|
|
}
|
|
|
|
/* Sheet visibility based on selected mode.
|
|
Knight and Raider modes both render the .knight-sheet container —
|
|
the difference is which .knight-only / .raider-only blocks are shown.
|
|
Default (Knight) is the natural state; only npcs/raider need overrides. */
|
|
.sheet-mode-select:has(option[value="npcs"]:checked) ~ .knight-sheet { display: none !important; }
|
|
.sheet-mode-select:has(option[value="npcs"]:checked) ~ .npc-sheet { display: block !important; }
|
|
.npc-sheet { display: none; }
|
|
|
|
/* Knight-only / Raider-only sub-sections within the shared character sheet.
|
|
The label `display: flex !important` rule near the top of this file forces
|
|
us to use !important here, with explicit display values per element type
|
|
when restoring visibility. */
|
|
.raider-only { display: none !important; }
|
|
|
|
.sheet-mode-select:has(option[value="raider"]:checked) ~ .knight-sheet .knight-only { display: none !important; }
|
|
.sheet-mode-select:has(option[value="raider"]:checked) ~ .knight-sheet label.raider-only { display: flex !important; }
|
|
.sheet-mode-select:has(option[value="raider"]:checked) ~ .knight-sheet input.raider-only { display: inline-block !important; }
|
|
|
|
.feat-checkbox {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.npc-content {
|
|
padding: 20px;
|
|
background-color: #f9f9f9;
|
|
border: 2px solid #18282e;
|
|
border-radius: 5px;
|
|
margin: 10px;
|
|
}
|
|
|
|
.npc-content h3 {
|
|
color: #18282e;
|
|
text-align: center;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.npc-content p {
|
|
font-family: "Alegreya";
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
color: #434343;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/*PROPERTY AND NOTES */
|
|
.property,
|
|
.notes {
|
|
height: 350px !important;
|
|
background-color: #f9f9f9;
|
|
box-sizing: border-box;
|
|
border-color: #18282e;
|
|
border-width: 2px;
|
|
border-radius: 4px;
|
|
border-style: solid;
|
|
padding: 10px;
|
|
outline-color: #a7a984;
|
|
}
|
|
/* END OF PROPERTY AND NOTES */
|
|
|
|
/* COMPANIONS SECTION */
|
|
.companions-section {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
|
|
.companion-row {
|
|
display: flex !important;
|
|
flex-direction: row !important;
|
|
flex-wrap: nowrap !important;
|
|
gap: 8px;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
background-color: #18282e;
|
|
padding: 5px;
|
|
border-radius: 2px;
|
|
overflow-x: auto;
|
|
min-width: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.companion-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
width: auto !important;
|
|
flex-wrap: nowrap !important;
|
|
white-space: nowrap !important;
|
|
flex-shrink: 0 !important;
|
|
flex-direction: row !important;
|
|
display: flex !important;
|
|
}
|
|
|
|
.companion-row label {
|
|
font-size: 14px !important;
|
|
color: #f9f9f9 !important;
|
|
height: 20px !important;
|
|
align-items: center !important;
|
|
margin: 0 !important;
|
|
flex-wrap: nowrap !important;
|
|
white-space: nowrap !important;
|
|
flex-shrink: 0 !important;
|
|
flex-direction: row !important;
|
|
display: flex !important;
|
|
}
|
|
|
|
.companion-row input {
|
|
font-size: 14px !important;
|
|
width: 30px !important;
|
|
min-width: 30px !important;
|
|
text-align: center;
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
.companion-row input.companion-name-input{
|
|
min-width: 112px !important;
|
|
}
|
|
.companion-row button {
|
|
height: 22px !important;
|
|
font-size: 14px !important;
|
|
padding: 2px 6px !important;
|
|
background-color: #18282e;
|
|
color: #f9f9f9 !important;
|
|
border: unset !important;
|
|
position: relative;
|
|
left: -20px;
|
|
}
|
|
|
|
.companion-row button:hover {
|
|
background-color: #a7a984;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
|
|
.companion-notes-row {
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.companion-notes-row label {
|
|
font-size: 14px !important;
|
|
height: 20px !important;
|
|
color: #18282e !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.companion-notes-textarea {
|
|
width: 100% !important;
|
|
height: 70px !important;
|
|
font-size: 14px !important;
|
|
background-color: #f9f9f9 !important;
|
|
border: 2px solid #18282e !important;
|
|
padding: 5px !important;
|
|
resize: vertical;
|
|
}
|
|
|
|
.companion-weapons {
|
|
background-color: #18282e;
|
|
padding: 5px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.companion-weapon-grid {
|
|
display: flex;
|
|
gap: 5px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.companion-weapon-grid div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 2px;
|
|
gap: 2px;
|
|
}
|
|
|
|
.companion-weapon-grid label {
|
|
color: #f9f9f9 !important;
|
|
background-color: #18282e;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
font-size: 12px !important;
|
|
height: 20px !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.companion-weapon-grid input {
|
|
font-size: 12px !important;
|
|
text-align: center;
|
|
background-color: #f9f9f9 !important;
|
|
min-width: 30px !important;
|
|
width: 100% !important;
|
|
}
|
|
|
|
.companion-weapon-grid button {
|
|
height: 18px !important;
|
|
font-size: 12px !important;
|
|
padding: 1px 4px !important;
|
|
background-color: #18282e;
|
|
color: #f9f9f9 !important;
|
|
border: unset !important;
|
|
}
|
|
|
|
.companion-weapon-grid button:hover {
|
|
background-color: #a7a984;
|
|
color: #f9f9f9 !important;
|
|
}
|
|
|
|
.companion-weapon {
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.companion-weapon:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* RECOVERY, OATH, FEATS, AND GAMBITS SECTION */
|
|
.recovery-oath-feats-gambits {
|
|
width: 100%;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits .top-row,
|
|
.recovery-oath-feats-gambits .bottom-row {
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits .recovery-section,
|
|
.recovery-oath-feats-gambits .feats-section,
|
|
.recovery-oath-feats-gambits .oath-section,
|
|
.recovery-oath-feats-gambits .gambits-section {
|
|
flex: 1;
|
|
padding: 10px 5px 0px 5px;
|
|
padding-bottom: 0px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits .recovery-content,
|
|
.recovery-oath-feats-gambits .feats-content,
|
|
.recovery-oath-feats-gambits .oath-content,
|
|
.recovery-oath-feats-gambits .gambits-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
.gambits-content, .oath-content{
|
|
flex-flow: column nowrap;
|
|
}
|
|
.gambits-section, .feats-section{
|
|
min-width: 28%;
|
|
}
|
|
.oath-content{
|
|
text-align:left;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits h3 {
|
|
margin-top: 0;
|
|
color: #18282e;
|
|
font-family: "Pirata One";
|
|
font-size: 18px;
|
|
text-align: center;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits p {
|
|
font-size: 14px;
|
|
font-family: "Alegreya";
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits strong {
|
|
color: #18282e;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.recovery-oath-feats-gambits em {
|
|
color: #666;
|
|
font-style: italic;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.oath-content p{
|
|
font-size:20px;
|
|
}
|
|
/* TEMPLATES*/
|
|
.sheet-rolltemplate-default,
|
|
.sheet-rolltemplate-test-under {
|
|
font-family: "Pirata One";
|
|
font-size: 24px;
|
|
}
|
|
|
|
.sheet-rolltemplate-default table {
|
|
background-color: #f9f9f9;
|
|
border: unset;
|
|
width: 100%;
|
|
}
|
|
|
|
.sheet-rolltemplate-default caption,
|
|
.sheet-rolltemplate-test-under .sheet-rollname {
|
|
font-size: 18px !important;
|
|
text-align: center !important;
|
|
font-family: "Pirata One" !important;
|
|
padding: 8px !important;
|
|
background-color: #f9f9f9 !important;
|
|
color: #f9f9f9 !important;
|
|
line-height: 16px;
|
|
background-color: #18282e !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-default tr {
|
|
background-color: #f9f9f9 !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-default td {
|
|
padding: 10px !important;
|
|
line-height: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
|
|
.sheet-rolltemplate-default td:first-child {
|
|
text-align: unset !important;
|
|
padding-right: unset !important;
|
|
color: #636363;
|
|
width: 40% !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-default td span {
|
|
background-color: transparent !important;
|
|
border: none !important;
|
|
}
|
|
.sheet-rolltemplate-default .inlinerollresult{
|
|
padding: 5px;
|
|
display: inline-block;
|
|
width: 30px;
|
|
text-align: center;
|
|
height: 27px;
|
|
vertical-align: middle;
|
|
padding-top: 16px;
|
|
color: #4c1f04 !important;
|
|
background-color: #eb9b3f !important;
|
|
border-radius: 5px;
|
|
}
|
|
.sheet-rolltemplate-test-under .sheet-template-header {
|
|
display: flex;
|
|
background-color: #18282e;
|
|
color: #f9f9f9;
|
|
font-size: 16px;
|
|
padding: 5px;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-test-under .sheet-template-result {
|
|
background-color: #f9f9f9;
|
|
padding: 5px;
|
|
display: flex;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
|
|
.sheet-rolltemplate-test-under .sheet-template-result {
|
|
background-color: #f9f9f9;
|
|
padding: 5px;
|
|
min-height: 40px;
|
|
}
|
|
|
|
.sheet-rolltemplate-test-under .sheet-template-result span {
|
|
background-color: #f9f9f9 !important;
|
|
color: #333 !important;
|
|
border: none !important;
|
|
}
|
|
.sheet-rolltemplate-test-under .sheet-template-result span span {
|
|
padding: 5px;
|
|
display: inline-block;
|
|
width: 30px;
|
|
text-align: center;
|
|
height: 27px;
|
|
vertical-align: middle;
|
|
padding-top: 16px;
|
|
color: #ffdabf !important;
|
|
background-color: #714545 !important;
|
|
border-radius:5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-test-under .sheet-template-outcome-success {
|
|
background-color: #18282e;
|
|
color: #65f192;
|
|
padding: 5px;
|
|
font-weight: bolder !important;
|
|
display: flex;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-test-under .sheet-template-outcome-failure {
|
|
background-color: #18282e;
|
|
color: #e76161;
|
|
padding: 5px;
|
|
font-weight: bolder !important;
|
|
display: flex;
|
|
justify-content: center !important;
|
|
align-items: center !important;
|
|
}
|
|
|
|
.sheet-rolltemplate-test-under .inlinerollresult.fullfail,
|
|
.sheet-rolltemplate-test-under .inlinerollresult.fullcrit {
|
|
border: unset !important;
|
|
}
|
|
|
|
/* END OF TEMPLATES */ |