mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
815 lines
17 KiB
CSS
815 lines
17 KiB
CSS
/*-----background-----*/
|
|
|
|
.charsheet {
|
|
background: black;
|
|
background-size:100%;
|
|
}
|
|
|
|
/*-----Tabs-----*/
|
|
|
|
div.sheet-core-content {
|
|
display: none;
|
|
width:840px;
|
|
}
|
|
|
|
.charsheet div[class^="sheet-section"] {
|
|
display: none;
|
|
background: url('http://i.imgur.com/uwDIn07.jpg');
|
|
background-size:100%;
|
|
padding-left:55px;
|
|
padding-right:120px;
|
|
padding-top:50px;
|
|
padding-bottom:50px;
|
|
height:985px;
|
|
}
|
|
|
|
.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,
|
|
.charsheet input.sheet-tab7:checked ~ div.sheet-section-7,
|
|
.charsheet input.sheet-tab8:checked ~ div.sheet-section-8,
|
|
.charsheet input.sheet-tab9:checked ~ div.sheet-section-9 {
|
|
/*max-height: 999999px;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
transition: opacity 0.5s linear 0s;
|
|
overflow: auto;*/
|
|
display: block;
|
|
}
|
|
|
|
.charsheet input.sheet-tab99:checked ~ div[class^="sheet-section"] {
|
|
/*max-height: 999999px;
|
|
visibility: visible;
|
|
opacity: 1;
|
|
transition: opacity 0.5s linear 0s;*/
|
|
display: block;
|
|
}
|
|
|
|
.charsheet input.sheet-tab {
|
|
width: 100px;
|
|
height: 40px;
|
|
cursor: pointer;
|
|
position: relative;
|
|
opacity: 0;
|
|
z-index: 9999;
|
|
margin-bottom:10px;
|
|
}
|
|
|
|
.charsheet span.sheet-tab {
|
|
text-align: center;
|
|
display: inline-block;
|
|
font-size: 13px;
|
|
background: white;
|
|
color: black;
|
|
font-weight: bold;
|
|
border-radius: 4px;
|
|
|
|
width: 100px; /*originally 87px*/
|
|
height: 40px; /*originally 20px*/
|
|
cursor: pointer;
|
|
position: relative;
|
|
vertical-align: middle;
|
|
margin-left: -101px;/*originally 91px*/
|
|
text-shadow: none;
|
|
border:2px solid black;
|
|
}
|
|
|
|
.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-tab9:checked + span.sheet-tab9,
|
|
.charsheet input.sheet-tab10:checked + span.sheet-tab10,
|
|
.charsheet input.sheet-tab99:checked + span.sheet-tab99 {
|
|
|
|
background: black; /*originally ab8b57*/
|
|
color: white; /*originally white*/
|
|
border-radius: 4px;
|
|
border:2px solid white;
|
|
}
|
|
|
|
/*----------- End Tab Setup -----------*/
|
|
/*-----cols-----*/
|
|
.charsheet .sheet-3colrow .sheet-col {
|
|
width: calc(30% - 9px) !important;
|
|
margin-right: 5px !important;
|
|
}
|
|
|
|
.charsheet .sheet-3colrow .sheet-col:nth-child(2) {
|
|
width: calc(30% - 9px) !important;
|
|
margin-right:5px;
|
|
}
|
|
.charsheet .sheet-3colrow .sheet-col:last-child {
|
|
margin-right: 0 !important;
|
|
}
|
|
.charsheet .sheet-2colrow .sheet-col {
|
|
width: calc(50% - 3px) !important;
|
|
margin-right: 2px !important;
|
|
}
|
|
.charsheet .sheet-2colrow .sheet-col:last-child {
|
|
margin-right: 0 !important;
|
|
}
|
|
.charsheet .sheet-1colrow .sheet-col {
|
|
width: calc(100% - 3px) !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
|
|
/*-----text-----*/
|
|
h5 {
|
|
text-shadow: none;
|
|
color:black;
|
|
}
|
|
|
|
th {
|
|
text-shadow: none;
|
|
color:black;
|
|
font-family: '';
|
|
font-weight:400;
|
|
}
|
|
|
|
h4 {
|
|
text-shadow: 0px 0px 10px white, 0px 0px 10px white, 0px 0px 10px white;
|
|
color:black;
|
|
text-shadow:none;
|
|
}
|
|
|
|
h3 {
|
|
color:black;
|
|
font-family: '';
|
|
}
|
|
|
|
h2 {
|
|
color:white;
|
|
background:black;
|
|
font-family: '';
|
|
font-weight:400;
|
|
text-shadow:none;
|
|
}
|
|
|
|
.charsheet {
|
|
text-shadow: none;
|
|
color:black;
|
|
font-family: '';
|
|
}
|
|
|
|
.sheet-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.sheet-right {
|
|
text-align: right;
|
|
margin-right:auto;
|
|
}
|
|
|
|
.sheet-textbox {
|
|
width:100%;
|
|
background:transparent;
|
|
box-shadow:none;
|
|
border-bottom: 1px solid black;
|
|
border-top:none;
|
|
border-left:none;
|
|
border-right:none;
|
|
}
|
|
|
|
.sheet-title {
|
|
background:transparent;
|
|
box-shadow:none;
|
|
border: none;
|
|
font-size:0.9em;
|
|
margin-top:-2px;
|
|
}
|
|
.sheet-virtue {
|
|
width:100%;
|
|
background:transparent;
|
|
box-shadow:none;
|
|
border-bottom: 1px dotted black;
|
|
border-top:none;
|
|
border-left:none;
|
|
border-right:none;
|
|
font-weight:700;
|
|
color:white;
|
|
text-shadow: 0px 0px 3px black, 0px 0px 3px black, 0px 0px 3px black;
|
|
}
|
|
|
|
.sheet-virtue:focus {
|
|
color:black;
|
|
text-shadow:none;
|
|
}
|
|
.sheet-healthbox {
|
|
width:30px;
|
|
background:transparent;
|
|
box-shadow:none;
|
|
border: 1px dotted black;
|
|
}
|
|
|
|
select.sheet-healthbox {
|
|
width:30px;
|
|
background:transparent;
|
|
box-shadow:none;
|
|
border: 1px dotted black;
|
|
font-family: 'Pictos Custom';
|
|
font-size:1.7em;
|
|
}
|
|
|
|
select.sheet-healthbox * {
|
|
font-family: 'Pictos Custom';
|
|
}
|
|
select {
|
|
margin:0;
|
|
overflow: hidden;
|
|
-webkit-appearance: none;
|
|
background:transparent;
|
|
border: none;
|
|
box-shadow:none;
|
|
margin-bottom: 2px;
|
|
margin-top: 0px;
|
|
padding-top:0px;
|
|
|
|
text-align: center;
|
|
text-indent: 0.01px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-padding-end: 00px;
|
|
-moz-padding-end: 00px;
|
|
font-family: '';
|
|
|
|
}
|
|
|
|
/*-------Tables--------*/
|
|
table.sheet-weapon, th.sheet-weapon, td.sheet-weapon {
|
|
border: 1px solid black;
|
|
background:transparent;
|
|
}
|
|
.sheet-weapon[type="text"] {
|
|
background:transparent;
|
|
border: none;
|
|
box-shadow:none;
|
|
}
|
|
|
|
.sheet-weapon[type="number"] {
|
|
background:transparent;
|
|
border: none;
|
|
box-shadow:none;
|
|
text-align:center;
|
|
}
|
|
|
|
select.sheet-weapon {
|
|
background:transparent;
|
|
border: none;
|
|
box-shadow:none;
|
|
margin-bottom: 0px;
|
|
margin-top: 0px;
|
|
padding-top:0px;
|
|
|
|
text-align: center;
|
|
text-indent: 0.01px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-padding-end: 00px;
|
|
-moz-padding-end: 00px;
|
|
}
|
|
/*-----textarea-----*/
|
|
|
|
textarea {
|
|
height: 50px;
|
|
resize:vertical;
|
|
background:transparent;
|
|
}
|
|
|
|
textarea.sheet-notes {
|
|
height: 220px;
|
|
resize:vertical;
|
|
background:transparent;
|
|
}
|
|
|
|
|
|
input.sheet-arrow {
|
|
float: left;
|
|
}
|
|
|
|
div.sheet-body {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-arrow:checked ~ div.sheet-body {
|
|
display: block;
|
|
}
|
|
|
|
/*-----radio boxes-----*/
|
|
|
|
/* -----Hide actual radio----- */
|
|
input.sheet-normal[type="radio"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -----Fake radio----- */
|
|
input.sheet-normal[type="radio"] + span::before
|
|
{
|
|
margin-right: 2px;
|
|
border: solid 1px #a8a8a8;
|
|
line-height: 12px;
|
|
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);
|
|
|
|
font-family: 'New Times Roman';
|
|
color:black;
|
|
content: "•";
|
|
width: 11px;
|
|
height: 11px;
|
|
font-size: 3em;
|
|
text-shadow:none;
|
|
|
|
-moz-border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
/* -----Remove dot from all radios _after_ selected one----- */
|
|
input.sheet-normal[type="radio"]:checked ~ input.sheet-normal[type="radio"] + span::before
|
|
{
|
|
content: "";
|
|
}
|
|
|
|
/*------------empty traits-----------*/
|
|
input.sheet-zero[type="radio"]:checked + span::before
|
|
{
|
|
opacity: 0;
|
|
}
|
|
|
|
input.sheet-zero[type="radio"]:hover + span::before
|
|
{
|
|
opacity: 1;
|
|
}
|
|
|
|
input.sheet-zero[type="radio"] + span::before
|
|
{
|
|
font-size: 12px;
|
|
content: "✖";
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.sheet-grid {
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
}
|
|
|
|
/*-----radio boxes-----*/
|
|
|
|
/* -----Hide actual radio----- */
|
|
input.sheet-square[type="radio"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -----Fake radio----- */
|
|
input.sheet-square[type="radio"] + span::before
|
|
{
|
|
margin-right: 2px;
|
|
border: solid 1px #a8a8a8;
|
|
line-height: 12px;
|
|
width: 11px;
|
|
height: 11px;
|
|
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);
|
|
|
|
font-family: 'New Times Roman';
|
|
color:red;
|
|
content: "✖";
|
|
width: 11px;
|
|
height: 11px;
|
|
font-size: 1em;
|
|
text-shadow:none;
|
|
}
|
|
|
|
/* -----Remove dot from all radios _after_ selected one----- */
|
|
input.sheet-square[type="radio"]:checked ~ input.sheet-square[type="radio"] + span::before
|
|
{
|
|
content: "";
|
|
}
|
|
|
|
/*------------empty traits-----------*/
|
|
input.sheet-squarezero[type="radio"]:checked + span::before
|
|
{
|
|
opacity: 0;
|
|
}
|
|
|
|
input.sheet-squarezero[type="radio"]:hover + span::before
|
|
{
|
|
opacity: 1;
|
|
}
|
|
|
|
input.sheet-squarezero[type="radio"] + span::before
|
|
{
|
|
font-size: 12px;
|
|
color:black;
|
|
content: "✖";
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.sheet-grid {
|
|
margin-left:auto;
|
|
margin-right:auto;
|
|
}
|
|
/*=====Advantage =====*/
|
|
/* -----Hide actual radio----- */
|
|
input.sheet-Advantage[type="radio"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -8px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input.sheet-Advantage[type="radio"] + span::before
|
|
{
|
|
margin-right: 2px;
|
|
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);
|
|
|
|
font-family: 'New Times Roman';
|
|
color:black;
|
|
content: "•";
|
|
width: 14px;
|
|
height: 14px;
|
|
font-size: 4em;
|
|
text-shadow:none;
|
|
|
|
-moz-border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
/* -----Remove dot from all radios _after_ selected one----- */
|
|
input.sheet-Advantage[type="radio"]:checked ~ input.sheet-Advantage[type="radio"] + span::before
|
|
{
|
|
content: "";
|
|
}
|
|
|
|
|
|
/*--------------Big Checkbox--------------*/
|
|
|
|
/* ----Hide actual sheet-bigcheck checkbox---- */
|
|
input.sheet-star[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: relative;
|
|
top: 0px;
|
|
left: 12px;
|
|
margin: -8px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ----Fake sheet-bigcheck checkbox---- */
|
|
input.sheet-star[type="checkbox"] + span::before
|
|
{
|
|
display:inline-block;
|
|
width:20px;
|
|
}
|
|
|
|
input.sheet-star[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 0px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
|
|
color: black;
|
|
font-family: 'Pictos Custom';
|
|
content: "t";
|
|
font-size:2em;
|
|
|
|
}
|
|
input.sheet-star[type="checkbox"]:checked + span::before
|
|
{
|
|
color: black;
|
|
font-family: 'Pictos';
|
|
content: "S";
|
|
}
|
|
/* ----Big Check checkbox---- */
|
|
/* ----Hide actual sheet-bigcheck checkbox---- */
|
|
input.sheet-bigcheck[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -8px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* ----Fake sheet-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: "✓";
|
|
}
|
|
/*--------------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
|
|
{
|
|
font-family: 'New Times Roman';
|
|
color: black;
|
|
font-size: 4em;
|
|
content: "•";
|
|
}
|
|
/*=====Buttons=====*/
|
|
button[type=roll].sheet-adv:before {
|
|
background-image: none;
|
|
/*background-color: #f2f5d3;*/
|
|
/*background-color: white;*/
|
|
content: "";
|
|
}
|
|
|
|
button[type=roll].sheet-adv {
|
|
background-image: none;
|
|
background: transparent;
|
|
color:black;
|
|
font-size:1em;
|
|
font-weight:700;
|
|
border-radius: 8px;
|
|
box-shadow:none;
|
|
height:28px;
|
|
width:100%;
|
|
border: none;
|
|
padding:none;
|
|
}
|
|
|
|
button[type=roll].sheet-adv:hover {
|
|
border: none;
|
|
background:black;
|
|
color:white;
|
|
}
|
|
|
|
button[type=roll].sheet-adv:active {
|
|
border: none;
|
|
background:red;
|
|
color:black;
|
|
}
|
|
|
|
/*=====Buttons=====*/
|
|
button[type=roll].sheet-big:before {
|
|
background-image: none;
|
|
/*background-color: #f2f5d3;*/
|
|
/*background-color: white;*/
|
|
content: "";
|
|
}
|
|
|
|
button[type=roll].sheet-big {
|
|
background-image: none;
|
|
background: transparent;
|
|
color:black;
|
|
padding-bottom:10px;
|
|
font-size:1.7em;
|
|
font-weight:400;
|
|
border-radius: 8px;
|
|
box-shadow:none;
|
|
height:28px;
|
|
width:210px;
|
|
border: none;
|
|
padding:none;
|
|
}
|
|
|
|
button[type=roll].sheet-big:hover {
|
|
border: none;
|
|
background:black;
|
|
color:white;
|
|
}
|
|
|
|
button[type=roll].sheet-big:active {
|
|
border: none;
|
|
background:red;
|
|
color:black;
|
|
}
|
|
|
|
/*=====Buttons=====*/
|
|
button[type=roll].sheet-skill:before {
|
|
background-image: none;
|
|
/*background-color: #f2f5d3;*/
|
|
/*background-color: white;*/
|
|
content: "";
|
|
}
|
|
|
|
button[type=roll].sheet-skill {
|
|
background-image: none;
|
|
background: transparent;
|
|
font-family:"";
|
|
color:black;
|
|
font-size:1em;
|
|
font-weight:400;
|
|
border-radius: 6px;
|
|
box-shadow:none;
|
|
height:20px;
|
|
width:100%;
|
|
border: none;
|
|
padding:none;
|
|
}
|
|
|
|
button[type=roll].sheet-skill:hover {
|
|
border: none;
|
|
background:black;
|
|
color:white;
|
|
}
|
|
|
|
button[type=roll].sheet-skill:active {
|
|
border: none;
|
|
background:gray;
|
|
color:black;
|
|
}
|
|
|
|
/*=====Buttons=====*/
|
|
button[type=roll].sheet-weapon:before {
|
|
background-image: none;
|
|
/*background-color: #f2f5d3;*/
|
|
/*background-color: white;*/
|
|
content: "";
|
|
}
|
|
|
|
button[type=roll].sheet-weapon {
|
|
background-image: none;
|
|
background: transparent;
|
|
font-family:"";
|
|
color:black;
|
|
font-size:1em;
|
|
font-weight:400;
|
|
border-radius: 6px;
|
|
box-shadow:none;
|
|
height:19px;
|
|
width:19px;
|
|
border: 1px solid black;
|
|
padding:none;
|
|
}
|
|
|
|
button[type=roll].sheet-weapon:hover {
|
|
border: 1px solid white;
|
|
background:black;
|
|
color:white;
|
|
}
|
|
|
|
button[type=roll].sheet-weapon:active {
|
|
border: 1px solid black;
|
|
background:gray;
|
|
color:black;
|
|
}
|