mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
97 lines
2.0 KiB
CSS
97 lines
2.0 KiB
CSS
.sheet-styled-select {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: 2px solid #eeeeee;
|
|
width: 250px;
|
|
height: 50px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sheet-styled-text {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: 2px solid #eeeeee;
|
|
width: 250px;
|
|
height: 180px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sheet-styled-asset {
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: 2px solid #eeeeee;
|
|
width: 250px;
|
|
height: 25px;
|
|
-webkit-border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sheet-styled-select > ul > li > label > input[type="radio"],
|
|
.sheet-styled-select > ul > li > label > img {
|
|
display: none;
|
|
}
|
|
|
|
.sheet-styled-select > ul > li > label > input[type="radio"]:checked + img {
|
|
display: block;
|
|
opacity: 1;
|
|
filter: alpha(opacity=100);
|
|
}
|
|
|
|
.sheet-styled-select > ul > li > label > img {
|
|
opacity: 0.4;
|
|
filter: alpha(opacity=40);
|
|
}
|
|
|
|
.sheet-styled-select > ul > li > label > input[type="radio"] {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.sheet-styled-select > ul:hover > li > label > input[type="radio"],
|
|
.sheet-styled-select > ul:hover > li > label > img,
|
|
.sheet-styled-select:hover > ul > li > label > input[type="radio"],
|
|
.sheet-styled-select:hover > ul > li > label > img {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-styled-select > ul {
|
|
list-style: none;
|
|
padding-left: 0px;
|
|
padding-top: 0px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.sheet-styled-select:hover > ul,
|
|
.sheet-styled-select > ul:hover {
|
|
display: block;
|
|
background-color: white;
|
|
}
|
|
|
|
.sheet-styled-select:hover > ul > li > label > input[type="radio"],
|
|
.sheet-styled-select:hover > ul > li > label > img {
|
|
display: block;
|
|
}
|
|
|
|
.sheet-styled-select:hover > ul > li,
|
|
.sheet-styled-select > ul:hover > li {
|
|
float: left;
|
|
margin: 0px;
|
|
margin-top: -8px;
|
|
}
|
|
|
|
.sheet-styled-select > ul > li{
|
|
margin-top: 0px !important;
|
|
margin-left: 0px !important;
|
|
}
|
|
|
|
.sheet-styled-text > textarea,
|
|
.sheet-styled-text > input {
|
|
border: 0;
|
|
max-width: 100%;
|
|
max-height: 95%;
|
|
margin: 2px 0px;
|
|
} |