No change...here is the rest of the CSS
.sheet-main {
font-family: Verdana, sans-serif;
font-size: small;
font-weight: normal;
padding: 0;
margin: .25in;
margin-bottom: calc(.25in - 1em);
display: grid;
grid-template:
"personal personal"
"stats stats"
"melee melee"
"ranged ranged"
"advantages skills"
"spells spells"
"equipment equipment"
"other_equipment other_equipment"
"notes notes"
;
grid-gap: .05in;
}
/*===== Roll Button Formatting ====*/
button[type="roll"].sheet-main:before {
content: ""!important;
display: none;
}
button[type=roll].sheet-main {
font-size: 1em;
color: #000000;
padding: 0;
margin: 0px;
height:14px;
background:transparent;
transition: 0.3s;
border:none;
}
.sheet-main button:hover {
background: #FFFFFF;
background: -webkit-radial-gradient(center, #FFFFFF, #FF1401);
background: -moz-radial-gradient(center, #FFFFFF, #FF1401);
background: radial-gradient(ellipse at center, #FFFFFF, #FF1401);
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border: 1px solid #800000;
}
/* ===== Input Formatting ==== */
input[type="text"].sheet-main {
font-family: Verdana, sans-serif;
font-size: 80%;
font-weight: bold;
color: #000000;
padding: 0;
margin:0;
align-self:stretch;
border: none;
}
.sheet-main select:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-main textarea:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-main input[type="text"]:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-main input[type="number"]:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-main input[type="radio"]:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-main input[type="checkbox"]:hover {
-webkit-box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
box-shadow: inset 0px 0px 4px 2px rgba(0,214,255,0.43);
}
.sheet-attrspan {
font-family: Verdana, sans-serif;
font-size: small;
font-weight: normal;
}
/*==== Tooltip ====*/
.sheet-tooltip {
position: relative;
display: grid;
grid-area: tooltip;
grid-template-areas: "ttlabel ttinput";
}
.sheet-tooltip .sheet-tooltiptext {
font-family: Verdana, sans-serif;
font-size: small;
font-weight: normal;
visibility: hidden;
width: 120px;
background-color: #ffffe1;
color: #000000;
text-align: center;
border-radius: 2px;
padding: 2px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
}
.sheet-tooltip .sheet-tooltiptext::before {
bottom: -20px;
content: " ";
display: block;
height: 20px;
left: 0;
position: absolute;
width: 100%;
}
.sheet-tooltip .sheet-tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.sheet-tooltip:hover .sheet-tooltiptext {
visibility: visible;
opacity: 1;
}
.sheet-tooltip .sheet-ttlabel { grid-area: ttlabel; }
.sheet-tooltip .sheet-ttinput { grid-area: ttinput; }
.sheet-tooltip .sheet-ttlabel {width: 80px;}
.sheet-tooltip .sheet-ttinput {width: 40px;}
.sheet-tooltip .sheet-ttinput input {
font-family: Verdana, sans-serif;
font-size: small;
font-weight: normal;
height: inherit;
border: solid 1px black;
}