mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
233 lines
4.5 KiB
CSS
233 lines
4.5 KiB
CSS
.charsheet {
|
|
background-image: url("http://p1.pichost.me/i/64/1885585.jpg");
|
|
}
|
|
|
|
input.sheet-tab1:not(:checked) ~ .sheet-tab1,
|
|
input.sheet-tab2:not(:checked) ~ .sheet-tab2,
|
|
input.sheet-tab3:not(:checked) ~ .sheet-tab3,
|
|
input.sheet-tab4:not(:checked) ~ .sheet-tab4,
|
|
input.sheet-tab5:not(:checked) ~ .sheet-tab5,
|
|
input.sheet-tab6:not(:checked) ~ .sheet-tab6,
|
|
input.sheet-tab7:not(:checked) ~ .sheet-tab7 {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-tab {
|
|
width: calc(20% - 4px);
|
|
max-width: 150px;
|
|
height: 20px;
|
|
|
|
outline: none !important;
|
|
position: relative;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
input.sheet-tab1 {
|
|
margin-left: 1px;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.sheet-tab-br {
|
|
border-bottom: 1px solid #a8a8a8;
|
|
margin-bottom: 5px;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
input.sheet-arrow {
|
|
float: left;
|
|
}
|
|
|
|
div.sheet-body {
|
|
display: none;
|
|
}
|
|
|
|
input.sheet-arrow:checked ~ div.sheet-body {
|
|
display: block;
|
|
}
|
|
|
|
div.sheet-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-left {
|
|
text-align: left;
|
|
}
|
|
|
|
.sheet-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-select {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.sheet-textbox_right {
|
|
-moz-border-radius-bottomright: 30px;
|
|
-webkit-border-bottom-right-radius: 30px;
|
|
border-bottom-right-radius: 30px;
|
|
border: 1px solid #848484;
|
|
outline:0;
|
|
height:25px;
|
|
width: 200px;
|
|
padding-right:20px;
|
|
background-color:White;
|
|
}
|
|
|
|
.sheet-textbox_left {
|
|
-moz-border-radius-topleft: 30px;
|
|
-webkit-border-top-left-radius: 30px;
|
|
border-top-left-radius: 30px;
|
|
border: 1px solid #848484;
|
|
outline:0;
|
|
height:25px;
|
|
width: 130px;
|
|
padding-left:20px;
|
|
font-weight: bold;
|
|
font-size: 1.10em;
|
|
background-color: #B80000;
|
|
color: White;
|
|
text-align: right;
|
|
margin: -5px;
|
|
}
|
|
|
|
.sheet-table_stats {
|
|
border-collapse:collapse;
|
|
border-spacing:0px;
|
|
margin:0px;
|
|
}
|
|
|
|
.sheet-table_stats-heading {
|
|
background-color:#B80000;
|
|
color:White;
|
|
border:1px solid #ffffff;
|
|
border-width:0px 1px 1px 0px;
|
|
padding:5px;
|
|
}
|
|
|
|
.sheet-table_title {
|
|
font-weight: bold;
|
|
font-size: 3.00em;
|
|
margin:-5px;
|
|
color: #B80000;
|
|
}
|
|
|
|
.sheet-font_black {
|
|
color: Black;
|
|
}
|
|
|
|
.sheet-backclear {
|
|
background-color:rgba(255,0,0,0.0);
|
|
text-align: center;
|
|
}
|
|
|
|
.sheet-backwhite_center {
|
|
background-color:White;
|
|
text-align: center;
|
|
margin:0px;
|
|
}
|
|
|
|
.sheet-backwhite_right {
|
|
background-color:White;
|
|
text-align: right;
|
|
}
|
|
|
|
.sheet-skill_button {
|
|
background: #ff000d;
|
|
background-image: -webkit-linear-gradient(top, #ff000d, #000000);
|
|
background-image: -moz-linear-gradient(top, #ff000d, #000000);
|
|
background-image: -ms-linear-gradient(top, #ff000d, #000000);
|
|
background-image: -o-linear-gradient(top, #ff000d, #000000);
|
|
background-image: linear-gradient(to bottom, #ff000d, #000000);
|
|
-webkit-border-radius: 40;
|
|
-moz-border-radius: 40;
|
|
border-radius: 40px;
|
|
color: #ffffff;
|
|
font-size: 20px;
|
|
padding: 10px 5px 10px 5px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sheet-skill_button:hover {
|
|
background: #3cb0fd;
|
|
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
|
|
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
|
|
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
|
|
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
|
|
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
|
|
text-decoration: none;
|
|
}
|
|
|
|
textarea {
|
|
position: relative;
|
|
right: 10px;
|
|
height: 40px;
|
|
}
|
|
|
|
textarea.sheet-textarea {
|
|
position: relative;
|
|
right: 0px;
|
|
height: 40px;
|
|
}
|
|
|
|
/*--------------sheet arrow--------------*/
|
|
|
|
/* ----Hide actual sheet-arrow checkbox---- */
|
|
|
|
input.sheet-arrow[type="checkbox"]
|
|
{
|
|
opacity: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
position: relative;
|
|
top: 5px;
|
|
left: 6px;
|
|
margin: -10px;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* -----Fake sheet-arrow checkbox----- */
|
|
|
|
input.sheet-arrow[type="checkbox"] + span::before
|
|
{
|
|
margin-right: 4px;
|
|
line-height: 14px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
float: left;
|
|
content: "►";
|
|
width: 14px;
|
|
height: 14px;
|
|
font-size: 12px;
|
|
}
|
|
input.sheet-arrow[type="checkbox"]:checked + span::before
|
|
{
|
|
content: "▼";
|
|
}
|