mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
1611 lines
35 KiB
CSS
1611 lines
35 KiB
CSS
/*-----background-----*/
|
|
|
|
.charsheet {
|
|
background: white;
|
|
}
|
|
|
|
.sheet-clear {
|
|
background:none;
|
|
}
|
|
|
|
/*----------- Tabs Setup -------------*/
|
|
|
|
div.sheet-core-content {
|
|
display: none;
|
|
width:840px;
|
|
}
|
|
|
|
.charsheet div[class^="sheet-section"] {
|
|
/*visibility: hidden;
|
|
opacity: 0;
|
|
max-height:0;
|
|
overflow: hidden;*/
|
|
display: none;
|
|
}
|
|
|
|
.charsheet input.sheet-tab1:checked ~ div.sheet-section-1,
|
|
.charsheet input.sheet-tab2:checked ~ div.sheet-section-2,
|
|
.charsheet input.sheet-tab3:checked ~ div.sheet-section-3,
|
|
.charsheet input.sheet-tab4:checked ~ div.sheet-section-4,
|
|
.charsheet input.sheet-tab5:checked ~ div.sheet-section-5,
|
|
.charsheet input.sheet-tab6:checked ~ div.sheet-section-6 {
|
|
display: block;
|
|
}
|
|
|
|
.charsheet input.sheet-tab99:checked ~ div[class^="sheet-section"] {
|
|
display: block;
|
|
}
|
|
input.sheet-tab::before {
|
|
content: attr(title);
|
|
display: inline-block;
|
|
|
|
background: #fff;
|
|
border: solid 1px #a8a8a8;
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
height: 20px;
|
|
}
|
|
|
|
input.sheet-tab:checked::before {
|
|
border-bottom-color: white;
|
|
}
|
|
.charsheet input.sheet-tab {
|
|
width: calc(20% - 4px);
|
|
max-width: 135px;
|
|
height: 20px;
|
|
|
|
outline: none !important;
|
|
position: relative;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
opacity: 10;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.charsheet span.sheet-tab {
|
|
display: none;
|
|
|
|
}
|
|
|
|
.charsheet input.sheet-tab1:checked + span.sheet-tab1,
|
|
.charsheet input.sheet-tab2:checked + span.sheet-tab2,
|
|
.charsheet input.sheet-tab3:checked + span.sheet-tab3,
|
|
.charsheet input.sheet-tab4:checked + span.sheet-tab4,
|
|
.charsheet input.sheet-tab5:checked + span.sheet-tab5,
|
|
.charsheet input.sheet-tab6:checked + span.sheet-tab6,
|
|
.charsheet input.sheet-tab7:checked + span.sheet-tab7,
|
|
.charsheet input.sheet-tab8:checked + span.sheet-tab8,
|
|
.charsheet input.sheet-tab99:checked + span.sheet-tab99 {
|
|
|
|
background: #dbc792; /*originally ab8b57*/
|
|
color: #755b27; /*originally white*/
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/*----------- End Tab Setup -----------*/
|
|
|
|
.sheet-tab-br {
|
|
border-bottom: 1px solid #a8a8a8;
|
|
margin-bottom: 5px;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
|
|
/*-----Sheet Arrow-----*/
|
|
/*-----sheet-arrow-----*/
|
|
input.sheet-arrow {
|
|
float: left;
|
|
}
|
|
|
|
div.sheet-body {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-arrow:checked ~ div.sheet-body {
|
|
display: block;
|
|
}
|
|
|
|
/* ----Hide actual sheet-arrow checkbox---- */
|
|
|
|
input.sheet-arrow[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 15px;
|
|
left: 15px;
|
|
margin: -10px;
|
|
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -----Fake sheet-arrow checkbox----- */
|
|
|
|
input.sheet-arrow[type="checkbox"] + span::before
|
|
{
|
|
position: relative;
|
|
top: 15px;
|
|
left: 5px;
|
|
color:black;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
float: left;
|
|
width: 14px;
|
|
height: 14px;
|
|
content: "*";
|
|
font-size:3em;
|
|
text-shadow: 0px 0px 3px red, 0px 0px 3px red,0px 0px 3px red;
|
|
}
|
|
input.sheet-arrow[type="checkbox"]:checked + span::before {
|
|
color:red;
|
|
font-size:3em;
|
|
text-shadow: 0px 0px 3px black, 0px 0px 3px black,0px 0px 3px black;
|
|
|
|
}
|
|
|
|
/*-----Sheet Arrow-----*/
|
|
/*-----sheet-techarrow-----*/
|
|
input.sheet-techarrow {
|
|
float: left;
|
|
}
|
|
|
|
div.sheet-body {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-techarrow:checked ~ div.sheet-body {
|
|
display: block;
|
|
}
|
|
|
|
/* ----Hide actual sheet-techarrow checkbox---- */
|
|
|
|
input.sheet-techarrow[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 10px;
|
|
left: 15px;
|
|
margin: -10px;
|
|
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -----Fake sheet-techarrow checkbox----- */
|
|
|
|
input.sheet-techarrow[type="checkbox"] + span::before
|
|
{
|
|
position: relative;
|
|
top: 0px;
|
|
left: 5px;
|
|
color:black;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
float: left;
|
|
width: 14px;
|
|
height: 14px;
|
|
content: "c";
|
|
font-family:"Pictos Three";
|
|
font-size:2em;
|
|
text-shadow: 0px 0px 3px red, 0px 0px 3px red,0px 0px 3px red;
|
|
|
|
margin-right:20px;
|
|
}
|
|
|
|
input.sheet-techarrow[type="checkbox"]:checked + span::before {
|
|
top: 0px;
|
|
left: 0px;
|
|
color:red;
|
|
font-size:2em;
|
|
content: "d";
|
|
font-family:"Pictos Three";
|
|
text-shadow: 0px 0px 5px black, 0px 0px 5px black,0px 0px 5px black;
|
|
|
|
}
|
|
/*====Sheet Col ====*/
|
|
.sheet-3colrow .sheet-col {
|
|
width: calc(40% - 9px) !important;
|
|
margin-right: 5px !important;
|
|
}
|
|
|
|
.sheet-3colrow .sheet-col:nth-child(2) {
|
|
width: calc(20% - 9px) !important;
|
|
margin-right:5px;
|
|
}
|
|
|
|
.sheet-3colrow .sheet-col:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.sheet-2colrow .sheet-col {
|
|
width: calc(50% - 3px);
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.sheet-2colrow .sheet-col:last-child {
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
.sheet-1colrow .sheet-col {
|
|
width: calc(100% - 3px) !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
/*-----sheet select-----*/
|
|
.sheet-select {
|
|
margin-bottom: 0px;
|
|
|
|
width: 100%;
|
|
text-align: center;
|
|
padding-top:0px;
|
|
padding-left: 10px;
|
|
text-indent: 0.01px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-padding-end: 00px;
|
|
-moz-padding-end: 00px;
|
|
border: 0 !important;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 15px;
|
|
box-shadow: inset 0 0 5px black;
|
|
color: black;
|
|
background: transparent;
|
|
text-overflow: "";
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-select[type="number"] {
|
|
height:28px;
|
|
}
|
|
|
|
select.sheet-legacy, select.sheet-legacy *, input.sheet-legacy[type="text"] {
|
|
text-shadow: 0px 0px 5px #23AB4C;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #23AB4C;
|
|
}
|
|
|
|
select.sheet-career, select.sheet-career *, input.sheet-career[type="text"] {
|
|
text-shadow: 0px 0px 5px #A54885;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #A54885;
|
|
}
|
|
|
|
select.sheet-Upbringing, select.sheet-Upbringing *, input.sheet-Upbringing[type="text"] {
|
|
text-shadow: 0px 0px 5px #FFA500;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #FFA500;
|
|
}
|
|
|
|
select.sheet-body, select.sheet-body * {
|
|
text-shadow: 0px 0px 5px silver;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px silver;
|
|
}
|
|
|
|
select.sheet-speed, select.sheet-speed * {
|
|
text-shadow: 0px 0px 5px #FFF100;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #FFF100;
|
|
}
|
|
|
|
select.sheet-mind, select.sheet-mind * {
|
|
text-shadow: 0px 0px 5px #00ADEF;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #00ADEF;
|
|
}
|
|
|
|
select.sheet-will, select.sheet-will * {
|
|
text-shadow: 0px 0px 5px #ED2229;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #ED2229;
|
|
}
|
|
|
|
.sheet-speed[type="text"] {
|
|
text-shadow: 0px 0px 5px #FFF100;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #FFF100;
|
|
border-radius:15px;
|
|
width:90px;
|
|
text-align:center;
|
|
font-weight:700;
|
|
}
|
|
|
|
.sheet-mind[type="text"] {
|
|
text-shadow: 0px 0px 5px #00ADEF;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #00ADEF;
|
|
border-radius:15px;
|
|
width:90px;
|
|
text-align:center;
|
|
font-weight:700;
|
|
}
|
|
|
|
.sheet-body[type="text"] {
|
|
text-shadow: 0px 0px 5px silver;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px silver;
|
|
border-radius:15px;
|
|
width:90px;
|
|
text-align:center;
|
|
font-weight:700;
|
|
}
|
|
|
|
.sheet-brown[type="text"] {
|
|
text-shadow: 0px 0px 5px #A52A2A;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px #A52A2A;
|
|
border-radius:15px;
|
|
width:90px;
|
|
text-align:center;
|
|
font-weight:700;
|
|
}
|
|
|
|
.sheet-total[type="text"] {
|
|
text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 3px black;
|
|
background: white;
|
|
box-shadow: inset 0 0 5px black;
|
|
color:white;
|
|
border-radius:5px;
|
|
width:90px;
|
|
text-align:center;
|
|
}
|
|
/*-----text-----*/
|
|
|
|
h5 {
|
|
text-shadow: 0px 0px 10px black;
|
|
color:black;
|
|
}
|
|
|
|
th {
|
|
text-shadow: 0px 0px 10px black;
|
|
color:black;
|
|
}
|
|
|
|
h4 {
|
|
text-shadow: 0px 0px 10px black;
|
|
color:black;
|
|
}
|
|
|
|
h2 {
|
|
text-shadow: 0px 0px 20px black;
|
|
color:black;
|
|
}
|
|
|
|
{
|
|
text-shadow: 0px 0px 10px black;
|
|
color:black;
|
|
}
|
|
.sheet-hide {
|
|
display:none;
|
|
}
|
|
|
|
.sheet-center {
|
|
text-align: center
|
|
}
|
|
|
|
.sheet-left {
|
|
text-align: left
|
|
}
|
|
|
|
.sheet-right {
|
|
text-align: right
|
|
}
|
|
|
|
.sheet-motto {
|
|
text-align: center;
|
|
font-style: italic;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sheet-goal {
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
/*====text box ====*/
|
|
input[type="text"], input[type="number"] {
|
|
display: inline-block;
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: 1px dotted gray;
|
|
background-color: transparent;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/*-----textarea-----*/
|
|
|
|
textarea {
|
|
width: 92%;
|
|
resize:vertical;
|
|
height:65px;
|
|
|
|
background: white;
|
|
box-shadow: inset 0 0 5px black;
|
|
border-radius:25px;
|
|
padding: 10px;
|
|
overflow-y:hidden;
|
|
}
|
|
|
|
table.sheet-center {
|
|
text-align: center;
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
}
|
|
|
|
.sheet-uni_title {
|
|
text-shadow:none;
|
|
width:50px;
|
|
font-size:1em;
|
|
border:none;
|
|
text-align: center;
|
|
font-weight:700;
|
|
box-shadow:none;
|
|
}
|
|
.sheet-uni_title[type='text'] {
|
|
text-shadow:none;
|
|
width:50px;
|
|
font-size:1em;
|
|
border:none;
|
|
text-align: center;
|
|
font-weight:700;
|
|
box-shadow:none;
|
|
}
|
|
.sheet-random, .sheet-random th, .sheet-random td {
|
|
text-shadow:none;
|
|
width:85px;
|
|
font-size:0.8em;
|
|
}
|
|
|
|
|
|
/*--------------Big Checkbox--------------*/
|
|
|
|
/* ----Hide actual bigcheck checkbox---- */
|
|
input.sheet-bigcheck[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ----Fake bigcheck checkbox---- */
|
|
input.sheet-bigcheck[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 4px;
|
|
border: solid 1px #a8a8a8;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
|
|
-moz-box-shadow: 0 0 2px #ccc;
|
|
-webkit-box-shadow: 0 0 2px #ccc;
|
|
box-shadow: 0 0 2px #ccc;
|
|
|
|
background: #f6f6f6;
|
|
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: radial-gradient(#f6f6f6, #dfdfdf);
|
|
}
|
|
|
|
input.sheet-bigcheck[type="checkbox"] + span::before
|
|
{
|
|
content: "";
|
|
width: 14px;
|
|
height: 14px;
|
|
font-size: 12px;
|
|
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
input.sheet-bigcheck[type="checkbox"]:checked + span::before
|
|
{
|
|
color: red;
|
|
content: "✖";
|
|
}
|
|
|
|
input.sheet-black[type="checkbox"] + span::before
|
|
{
|
|
color: black;
|
|
content: "✖";
|
|
width: 14px;
|
|
height: 14px;
|
|
font-size: 12px;
|
|
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
input.sheet-black[type="checkbox"]:checked + span::before
|
|
{
|
|
color: black;
|
|
content: "✖";
|
|
}
|
|
|
|
/*----- Sheet-varied -----*/
|
|
div.sheet-varied {
|
|
width: 20px;
|
|
height: 20px;
|
|
position: relative;
|
|
left:20px;
|
|
top: -5px;
|
|
}
|
|
|
|
input.sheet-varied {
|
|
margin: 5px 0 0 0px;
|
|
opacity: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
left:0px;
|
|
top:0px;
|
|
z-index: 1;
|
|
}
|
|
|
|
span.sheet-varied {
|
|
margin: 5px 0 0 0px;
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-notchecked { z-index: 2; }
|
|
|
|
input.sheet-notchecked:checked + input.sheet-checked{ z-index: 3; }
|
|
|
|
input.sheet-notchecked:checked ~ span.sheet-notchecked,
|
|
input.sheet-checked:checked ~ span.sheet-checked { display: inline-block; }
|
|
|
|
.sheet-notchecked {
|
|
content: "";
|
|
width: 12px;
|
|
height: 12px;
|
|
font-size: 24px;
|
|
border:1px solid black;
|
|
|
|
-moz-border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
.sheet-checked {
|
|
background:black;
|
|
width: 12px;
|
|
height: 12px;
|
|
font-size: 24px;
|
|
border:1px solid black;
|
|
|
|
-moz-border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
border-radius: 50%;
|
|
}
|
|
/*--------------Round checkbox--------------*/
|
|
|
|
/* ----Hide actual roundcheck checkbox---- */
|
|
input.sheet-roundcheck[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ----Fake roundcheck checkbox---- */
|
|
input.sheet-roundcheck[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 4px;
|
|
border: solid 1px #a8a8a8;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
border-radius: 20px 20px 20px 20px;
|
|
|
|
-moz-box-shadow: 0 0 20px #ccc;
|
|
-webkit-box-shadow: 0 0 20px #ccc;
|
|
box-shadow: 0 0 20px #ccc;
|
|
|
|
background: #f6f6f6;
|
|
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
|
|
background: radial-gradient(#f6f6f6, #dfdfdf);
|
|
|
|
-moz-border-radius: 20px 20px 20px 20px;
|
|
-webkit-border-radius: 20px 20px 20px 20px;
|
|
border-radius: 20px 20px 20px 20px;
|
|
}
|
|
|
|
input.sheet-roundcheck[type="checkbox"] + span::before
|
|
{
|
|
content: "";
|
|
width: 14px;
|
|
height: 14px;
|
|
font-size: 12px;
|
|
|
|
-moz-border-radius: 20px;
|
|
-webkit-border-radius: 20px;
|
|
border-radius: 20px;
|
|
}
|
|
input.sheet-roundcheck[type="checkbox"]:checked + span::before
|
|
{
|
|
color: red;
|
|
font-size: 1em;
|
|
content: "✓";
|
|
}
|
|
|
|
/* ===== Button Reset ===== */
|
|
.charsheet button[type="roll"]:before {
|
|
content: ""!important;
|
|
display: none;
|
|
}
|
|
.charsheet button[type="roll"],
|
|
.charsheet .sheet-roll {
|
|
width: 100%;
|
|
height:24px;
|
|
vertical-align: middle;
|
|
padding: 0;
|
|
display: inline-block;
|
|
margin: 0;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
background-image: none;
|
|
|
|
background-color: transparent;
|
|
border: 1px solid black;
|
|
|
|
white-space: nowrap;
|
|
border-radius: 4px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
}
|
|
|
|
.charsheet button[type="roll"]:hover,
|
|
.charsheet .sheet-roll:hover,
|
|
.charsheet .sheet-hider input[type=checkbox]:checked ~ .sheet-btn {
|
|
background-color: black;
|
|
border-color: red;
|
|
}
|
|
|
|
.charsheet button[type="roll"]:active,
|
|
.charsheet .sheet-roll:active,
|
|
.charsheet .sheet-hider input[type=checkbox]:active ~ .sheet-btn {
|
|
background-color: red;
|
|
border-color: black;
|
|
color:black;
|
|
}
|
|
|
|
.charsheet .sheet-hider input[type=checkbox]:checked ~ .sheet-btn {
|
|
}
|
|
|
|
.charsheet button[type="roll"] label,
|
|
.charsheet button[type="roll"] input {
|
|
height:24px;
|
|
line-height: 24px;
|
|
font-size: 11px; /*13px*/
|
|
vertical-align: middle;
|
|
text-align:center;
|
|
width: 99%;
|
|
cursor: pointer;
|
|
background: none;
|
|
box-shadow: none;
|
|
transition: none;
|
|
border-radius: none;
|
|
border:none;
|
|
font-weight:700;
|
|
}
|
|
|
|
.charsheet button[type="roll"] input {
|
|
}
|
|
|
|
.charsheet button[type="roll"]:hover label,
|
|
.charsheet button[type="roll"]:hover input {
|
|
color: white;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-speedroll button[type="roll"] {
|
|
border: 1px solid #FFF100;
|
|
}
|
|
|
|
.sheet-speedroll button[type="roll"]:hover,
|
|
.sheet-speedroll button[type="roll"]:hover label {
|
|
background-color: #FFF100;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-bodyroll button[type="roll"] {
|
|
border: 1px solid silver;
|
|
}
|
|
|
|
.sheet-bodyroll button[type="roll"]:hover,
|
|
.sheet-bodyroll button[type="roll"]:hover label {
|
|
background-color: silver;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-mindroll button[type="roll"] {
|
|
border: 1px solid #00ADEF;
|
|
}
|
|
|
|
.sheet-mindroll button[type="roll"]:hover,
|
|
.sheet-mindroll button[type="roll"]:hover label {
|
|
background-color: #00ADEF;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-willroll button[type="roll"] {
|
|
border: 1px solid #ED2229;
|
|
}
|
|
|
|
.sheet-willroll button[type="roll"]:hover,
|
|
.sheet-willroll button[type="roll"]:hover label {
|
|
background-color: #ED2229;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-legacyroll button[type="roll"] {
|
|
border: 1px solid #23AB4C;
|
|
}
|
|
|
|
.sheet-legacyroll button[type="roll"]:hover,
|
|
.sheet-legacyroll button[type="roll"]:hover label {
|
|
background-color: #23AB4C;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-careerroll button[type="roll"] {
|
|
border: 1px solid #A54885;
|
|
}
|
|
|
|
.sheet-careerroll button[type="roll"]:hover,
|
|
.sheet-careerroll button[type="roll"]:hover label {
|
|
background-color: #A54885;
|
|
color:black;
|
|
}
|
|
|
|
.sheet-thing button[type="roll"] label {
|
|
border: 1px solid red;
|
|
}
|
|
|
|
.sheet-thing:hover {
|
|
color:white;
|
|
}
|
|
.sheet-thing button[type="roll"]:hover,
|
|
.sheet-thing button[type="roll"]:hover label {
|
|
background-color: white;
|
|
color:white;
|
|
}
|
|
/* Tool Tips*/
|
|
/*=====Tooltips =====*/
|
|
.sheet-tooltips {
|
|
position: relative;
|
|
display: inline;
|
|
}
|
|
.sheet-tooltips span {
|
|
position: absolute;
|
|
color: #000000;
|
|
background: #FFFFFF;
|
|
border: 2px solid #FF0800;
|
|
min-width:100px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
visibility: hidden;
|
|
border-radius: 6px;
|
|
box-shadow: -5px 5px 5px #000000;
|
|
text-shadow:none;
|
|
}
|
|
.sheet-tooltips span:before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 60%;
|
|
margin-left: -12px;
|
|
width: 0; height: 0;
|
|
border-top: 12px solid #FF0800;
|
|
border-right: 12px solid transparent;
|
|
border-left: 12px solid transparent;
|
|
}
|
|
.sheet-tooltips span:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 60%;
|
|
margin-left: -8px;
|
|
width: 0; height: 0;
|
|
border-top: 8px solid #FFFFFF;
|
|
border-right: 8px solid transparent;
|
|
border-left: 8px solid transparent;
|
|
}
|
|
.sheet-tooltips:hover.sheet-tooltips span {
|
|
visibility: visible;
|
|
opacity: 0.8;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
margin-left: -76px;
|
|
z-index: 999;
|
|
}
|
|
|
|
/* My adaptation of the Pathfinder Based Stuff*/
|
|
/* Weapons */
|
|
.sheet-rolltemplate-weapon .sheet-border {
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-header {
|
|
color: #191970;
|
|
padding: 2px 0px 2px 4px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow th,
|
|
.sheet-rolltemplate-weapon .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-weapon .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-weapon .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-weapon .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
/* Skill */
|
|
.sheet-rolltemplate-skill .sheet-border {
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-header {
|
|
color: #191970;
|
|
padding: 2px 0px 2px 4px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow th,
|
|
.sheet-rolltemplate-skill .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-skill .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-skill .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-skill .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
/* Initiative */
|
|
.sheet-rolltemplate-Initiative .sheet-border {
|
|
border-color: #191970;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-header {
|
|
color: red;
|
|
padding: 2px 0px 2px 4px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow th,
|
|
.sheet-rolltemplate-Initiative .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-Initiative .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: red;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-Initiative .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: red;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Initiative .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
/* ========== Soak ========== */
|
|
.sheet-rolltemplate-Soak .sheet-border {
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-header {
|
|
color: #191970;
|
|
padding: 2px 0px 2px 4px;
|
|
margin-left:10px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow th,
|
|
.sheet-rolltemplate-Soak .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-Soak .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-left-width: 4px;
|
|
border-top-left-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-Soak .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-left-width: 4px;
|
|
border-bottom-left-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Soak .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
/* Scramble */
|
|
.sheet-rolltemplate-Scramble .sheet-border {
|
|
border-color: #FFF100;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-header {
|
|
color: #FFF100;
|
|
text-shadow: 0px 0px 2px black,0px 0px 2px black,0px 0px 2px black;
|
|
padding: 2px 0px 2px 4px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow th,
|
|
.sheet-rolltemplate-Scramble .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-Scramble .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: #FFF100;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-Scramble .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: #FFF100;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Scramble .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
/* Scramble */
|
|
.sheet-rolltemplate-Dodge .sheet-border {
|
|
border-color: #00ADEF;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-header {
|
|
color: #00ADEF;
|
|
text-shadow: 0px 0px 2px black,0px 0px 2px black,0px 0px 2px black;
|
|
padding: 2px 0px 2px 4px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow th,
|
|
.sheet-rolltemplate-Dodge .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.sheet-rolltemplate-Dodge .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: #00ADEF;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-Dodge .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: #00ADEF;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-Dodge .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
/* ========== random ========== */
|
|
.sheet-rolltemplate-random .sheet-border {
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-top-width: 0px;
|
|
border-bottom-right-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-header {
|
|
color: #191970;
|
|
padding: 2px 0px 2px 4px;
|
|
margin-left:10px;
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
font-family: "Times New Roman", Times, serif;
|
|
font-variant: small-caps;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow th,
|
|
.sheet-rolltemplate-random .sheet-shadow td {
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
font-size:0.8em;
|
|
}
|
|
.sheet-rolltemplate-random .sheet-header_background {
|
|
background-color: transparent;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-bottom-width: 3px;
|
|
border-left-width: 4px;
|
|
border-top-left-radius: 16px;
|
|
border-right-width: 4px;
|
|
border-top-right-radius: 16px; background-size: auto;
|
|
}
|
|
.sheet-rolltemplate-random .sheet-header_background_down {
|
|
background-color: transparent;
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 0px;
|
|
border-top-width: 3px;
|
|
border-left-width: 4px;
|
|
border-bottom-left-radius: 16px;
|
|
border-right-width: 4px;
|
|
border-bottom-right-radius: 16px;
|
|
background-size: auto;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-tcat {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-content {
|
|
padding: 1px 5px 1px 5px;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .inlinerollresult {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .inlinerollresult.fullcrit {
|
|
color: #3FB315;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .inlinerollresult.fullfail {
|
|
color: #B31515;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .inlinerollresult.importantroll {
|
|
color: #4A57ED;
|
|
border: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-random table.sheet-shadow {
|
|
background:white;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
border-spacing:0;
|
|
box-shadow: 0 0 5px black, 0 0 5px black, -5px -5px 10px black;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow td:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow th:first-child {
|
|
border-radius: 10px 0 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow th:last-child {
|
|
border-radius: 0 10px 0 0;
|
|
}
|
|
|
|
.sheet-rolltemplate-random .sheet-shadow tr:last-child td:first-child {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
|
|
|
|
|
|
|