Files
roll20-character-sheets/DungeonWorld/DungeonWorld.css
T
mpureka 9a0a55f05d Fix for Disabled Fields in Mozilla
Added a single line to force disabled input fields to use textbox
appearance to avoid input spinners in those fields
2015-09-14 21:19:51 -04:00

303 lines
4.4 KiB
CSS

.charsheet {
width: 830px;
background: white;
}
textarea {
resize: none;
height: auto;
width: 97%;
}
textarea,
input {
outline: none;
box-shadow: none;
margin-bottom: 1px;
}
.sheet-header textarea,
.sheet-header input {
border: none;
}
input[type="number"],
input[type="text"] {
width: 100%;
}
select {
width: auto;
margin: 0;
}
input[type=number]:disabled::-webkit-inner-spin-button,
input[type=number]:disabled::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[disabled] {-moz-appearance: textfield}
.repcontainer .btn,
.repcontrol .btn {
border-radius: 0;
background-image: none;
border: none;
}
/* ===== LAYOUT ===== */
.sheet-col-left {
float: left;
width: 39%;
}
.sheet-col-right {
float: right;
width: 60%;
}
/* ===== TOGGLE ===== */
.sheet-toggle:not(:checked) ~ .sheet-hide,
.sheet-toggle:checked ~ .sheet-show {
display: none;
}
/* ===== SECTION HEADERS ===== */
.sheet-header {
background-color: #000;
color: #fff;
padding: 2px 0px;
vertical-align: middle;
line-height: 100%;
height: 32px;
line-height: 32px;
font-size: 1.1em;
margin: 3px 0px;
box-align: center;
border-radius: 4px;
padding: 2px 2px 2px 8px;
}
.sheet-header input {
height: 28px;
border: none;
vertical-align: middle;
font-weight: bold;
font-size: 18px;
line-height: 18px;
margin: 2px;
}
.sheet-header input[type="text"] {
width: 2.2em;
}
.sheet-header input[type="number"] {
width: 2.7em;
}
.sheet-header input[type="number"]:disabled {
width: 2em;
}
.sheet-header button[type="roll"] {
height: 28px;
width: 28px;
margin: 2px;
padding: 4px;
padding-top: 5px;
font-size: 20px;
text-align: center;
background: white;
border: none;
border-radius: 3px;
}
.sheet-header > * {
text-align: right;
float: right;
height: 100%;
}
.sheet-header .sheet-section-name {
margin-right: 2px;
font-weight: bold;
text-align: left;
float: left;
}
/* ===== MAIN HEADER ===== */
.sheet-topbar {
height: 50px;
padding: 4px 2% 4px 2%;
}
.sheet-topbar.sheet-header > input {
height: 100%;
width: 50%;
padding: 0;
margin: 0;
background-color: black;
color: white;
font-size: 38px;
line-height: 42px;
}
.sheet-topbar > .sheet-field-name {
float: left;
text-align: left;
}
.sheet-topbar > .sheet-field-class {
float: right;
text-align: right;
}
/* ===== STATISTICS ===== */
.sheet-statistics {
width: 100%;
margin-left: 0.5%;
}
.sheet-statistics .sheet-header {
width: 18%;
float: left;
margin-right: 0.6%;
}
.sheet-statistics .sheet-header:last-child {
margin-right: 0;
}
/* ===== ATTRIBUTES ===== */
.sheet-attributes {
margin-left: 1%;
margin-bottom: 10px;
}
.sheet-attributes .sheet-header {
height: auto;
width: 15%;
float: left;
margin-right: 0.5%;
padding: 4px;
padding-bottom: 6px;
position: relative;
}
.sheet-attributes .sheet-header > label {
height: 1em;
width: calc(90% - 8px);
margin: 0;
padding: 1px 2px;
margin: 0 5%;
text-transform: uppercase;
text-align: center;
font-weight: normal;
font-size: 12px;
background: white;
transform: skew(-10deg);
-webkit-transform: skew(-10deg);
position: absolute;
}
.sheet-attributes .sheet-header > label.sheet-top {
top: -5px;
}
.sheet-attributes .sheet-header > label.sheet-bottom {
bottom: -2px;
}
.sheet-attributes .sheet-header input[type="number"] {
background: white;
width: 100%;
margin: 0;
text-align: center;
z-index: 1;
}
.sheet-attributes .sheet-row-1 input {
width: 100%;
}
.sheet-attributes .sheet-row-2 {
width: 100%;
height: 16px;
padding: 1px;
overflow: hidden;
line-height: 14px;
font-size: 12px;
text-align: center;
text-transform: uppercase;
font-weight: bold;
}
.sheet-attributes .sheet-row-2 label {
color: #DDD;
font-size: 80%;
}
.sheet-attributes .sheet-row-2 input {
height: 14px;
margin: 0;
}
.sheet-attributes .sheet-row-3 button {
position: absolute;
right: 2px;
bottom: 2px;
z-index: 1;
}
/* ===== UTILITY ===== */
.sheet-clearfix {
clear: both;
}
.sheet-right {
float: right !important;
}
.sheet-left {
float: left !important;
}
/* ===== TWEAKS ===== */
.sheet-section-moves textarea {
resize: vertical;
}
.sheet-section-moves input[name="attr_movename"],
.sheet-section-spells input[name="attr_spellname"] {
width: 95%;
}
.sheet-section-gear input[name="attr_itemtags"] {
width: 85%;
float: left;
}
.sheet-section-gear input[name="attr_itemweight"] {
width: 15%;
float: left;
}