13
| <![CDATA[<style>
.alertdanger{
background: red;
width: 50%;
min-width: 200px;
height: auto;
min-height: 50px;
border: solid 2px orange;
padding-top: 10px;
padding-bottom: 10px;
box-sizing: border-box;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-shadow: 1px 1px 2px black;
text-align:center;
}
.cinza{
background: RGB(220,220,220);
border: solid 1px RGB(211,211,211);
text-align:center;
}
input[type=date]{
display:block;
font-size: 100%;
background: #7fc8f0;
border:solid 1px #ccc;
width: 100%;
height: auto;
min-height: 30px;
outline: none;
padding: 0 10px;
box-sizing: border-box;
color: #000f0f;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.encapsulador{
display:block;
position: relative;
padding-right: 15px;
margin-top: 10px;
margin-bottom:10px;
cursor: pointer;
background: RGB(220,220,220);
border: none;
width: 100%;
text-align:right;
}
.encapsulador > small{
margin-left:20px;
}
.encapsulador input[type=checkbox]{
opacity: 0;
position: absolute;
cursor: pointer;
}
.validador{
left: 0;
top:0;
width: 20px;
height: 20px;
background: RGB(220,220,220);
}
.encapsulador input:checked ~ .validador{
background: RGB(220,220,220);
border-radius: 25%;
}
.encapsulador .validador:after{
top:1px;
left:9px;
width:5px;
height:10px;
border: solid #2b374f;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.validador:after{
content:'';
position: absolute;
display: none;
}
.encapsulador input:checked ~ .validador:after{
display:block;
}
</style>]]>
|