2021-10-19 08:52:45 +00:00
|
|
|
/*
|
|
|
|
Created on : 29-jul-2019, 11:30:28
|
|
|
|
Author : enrique blasco blanquer
|
|
|
|
*/
|
|
|
|
|
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2022-03-03 07:12:10 +00:00
|
|
|
user-select: none;
|
2021-10-19 08:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html,body{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-family: sans-serif;
|
|
|
|
background: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h1{
|
|
|
|
position: fixed;
|
|
|
|
bottom: 20px;
|
|
|
|
right: 20px;
|
|
|
|
font-size: 1em;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
span{
|
|
|
|
color: #ED4947;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.total{
|
|
|
|
float: right;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin-top: -40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul{
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pinLogin{
|
|
|
|
background-image: url(../img/logo.png);
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoVerd{
|
|
|
|
width: 200px;
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logoVerdHeader{
|
|
|
|
width: 50px;
|
|
|
|
margin: 0;
|
|
|
|
position: fixed;
|
|
|
|
top: 12px;
|
|
|
|
left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.pinContainer{
|
|
|
|
width: 350px;
|
|
|
|
height: 460px;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#txtPin{
|
|
|
|
text-align: center;
|
|
|
|
padding: 15px 5px;
|
|
|
|
background: rgba(255,255,255,.90);
|
|
|
|
border: none;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.5em;
|
2022-03-03 07:12:10 +00:00
|
|
|
border-radius: 5px;
|
2021-10-19 08:52:45 +00:00
|
|
|
|
|
|
|
display: block;
|
|
|
|
width: 250px;
|
|
|
|
margin: auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnPin{
|
|
|
|
float: left;
|
|
|
|
width: calc(100% / 3);
|
|
|
|
height: calc(500px/5);
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
.btnPinNum{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 2.5em;
|
|
|
|
background: rgba(255,255,255,.90);
|
2022-03-03 07:12:10 +00:00
|
|
|
padding-top: 23px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnPinNum:active{
|
|
|
|
background: rgb(255,255,255);
|
2021-10-19 08:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btnCancel{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 2.5em;
|
2022-03-03 07:12:10 +00:00
|
|
|
padding-top: 15px;
|
2021-10-19 08:52:45 +00:00
|
|
|
background: rgba(237,73,71,.90);
|
|
|
|
color: #fff;
|
2022-03-03 07:12:10 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
.btnCancel:active{
|
|
|
|
background: rgb(172,55,54);
|
2021-10-19 08:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.btnOk{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
font-size: 2.5em;
|
2022-03-03 07:12:10 +00:00
|
|
|
padding-top: 15px;
|
2021-10-19 08:52:45 +00:00
|
|
|
background: rgba(163,171,38,.90);
|
|
|
|
color: #fff;
|
2022-03-03 07:12:10 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnOk:active{
|
|
|
|
background: rgb(130, 136, 31);
|
2021-10-19 08:52:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#txtNombre{
|
|
|
|
padding-top: 0px;
|
|
|
|
padding-left: 10px;
|
|
|
|
float: left;
|
|
|
|
color: #fff;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 1.8em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paneles{
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.planPanel{
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
padding: 20px 20px 0 20px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.problemsPanel{
|
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.container{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba(255,255,255,.90);
|
|
|
|
padding: 20px;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 0 5px rgba(0,0,0,.2);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
h2{
|
|
|
|
font-size: 1.3em;
|
|
|
|
}
|
|
|
|
h3{
|
|
|
|
font-size: 1em;
|
|
|
|
color: #9EA7AC;
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer{
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.in,.inMiddle {
|
|
|
|
display: inline;
|
|
|
|
position: static;
|
|
|
|
width: 350px;
|
|
|
|
background: #8DD202;
|
|
|
|
padding: 20px 40px;
|
|
|
|
font-size: 2em;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
2022-02-28 08:44:00 +00:00
|
|
|
.inMiddle{
|
|
|
|
background: #d27502;
|
|
|
|
}
|
2021-10-19 08:52:45 +00:00
|
|
|
|
|
|
|
.out,.outMiddle{
|
|
|
|
display: inline;
|
|
|
|
position: static;
|
|
|
|
width: 350px;
|
|
|
|
background: rgba(237,73,71,.90);
|
|
|
|
padding: 20px 40px;
|
|
|
|
font-size: 2em;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
2022-02-28 08:44:00 +00:00
|
|
|
.outMiddle{
|
|
|
|
background: #d27502;
|
|
|
|
}
|
|
|
|
|
2021-10-19 08:52:45 +00:00
|
|
|
header{
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 20px 20px 0px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnSalir{
|
|
|
|
float: right;
|
|
|
|
background: rgba(237,73,71,.90);
|
|
|
|
padding: 5px 30px;
|
|
|
|
font-size: 1.2em;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#txtIncidencia{
|
|
|
|
color: #ED4947;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.listHorario{
|
|
|
|
margin-top: 20px;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.listHorario .headerLi{
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
border-bottom: 1px solid #9EA7AC;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.listHorario label{
|
|
|
|
float: left;
|
|
|
|
width: calc(100% / 7);
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
.hoy{
|
|
|
|
background: #9EA7AC;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listHorario .time{
|
|
|
|
float: left;
|
|
|
|
width: calc(100% / 7);
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px 0;
|
|
|
|
font-size: 1.2em;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
}
|
|
|
|
.listHorario .time img{
|
|
|
|
width: 20px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listHorario .time p{
|
|
|
|
float: left;
|
|
|
|
background: #8DD202;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.impar{
|
|
|
|
color: rgba(163,171,38,.90);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide{
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
.show{
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2021-10-20 13:13:30 +00:00
|
|
|
.confirm {
|
2021-10-19 08:52:45 +00:00
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
color: #fff;
|
2021-10-20 13:13:30 +00:00
|
|
|
background: #8DD202;
|
2021-10-19 08:52:45 +00:00
|
|
|
}
|
2021-10-20 13:13:30 +00:00
|
|
|
.confirm.confirmKO {
|
2021-10-19 08:52:45 +00:00
|
|
|
background: rgba(237,73,71);
|
|
|
|
}
|
|
|
|
|
|
|
|
.contConfirm{
|
|
|
|
position: fixed;
|
|
|
|
margin: auto;
|
|
|
|
top:0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 800px;
|
|
|
|
height: 170px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contConfirm h4{
|
|
|
|
font-size: 2.5em;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnconfirmar{
|
|
|
|
float: left;
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 18px;
|
|
|
|
background: rgba(163,171,38,.90);
|
|
|
|
color: #fff;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnnoconfirm{
|
|
|
|
float: left;
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 18px;
|
|
|
|
background: rgba(237,73,71,.90);
|
|
|
|
color: #fff;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.botonera{
|
|
|
|
margin: auto;
|
|
|
|
width: 310px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading{
|
|
|
|
display: none;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 999;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: rgba(25,154,166,1);
|
|
|
|
background: -moz-linear-gradient(45deg, rgba(25,154,166,1) 0%, rgba(39,216,139,1) 100%);
|
|
|
|
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(25,154,166,1)), color-stop(100%, rgba(39,216,139,1)));
|
|
|
|
background: -webkit-linear-gradient(45deg, rgba(25,154,166,1) 0%, rgba(39,216,139,1) 100%);
|
|
|
|
background: -o-linear-gradient(45deg, rgba(25,154,166,1) 0%, rgba(39,216,139,1) 100%);
|
|
|
|
background: -ms-linear-gradient(45deg, rgba(25,154,166,1) 0%, rgba(39,216,139,1) 100%);
|
|
|
|
background: linear-gradient(45deg, rgba(25,154,166,1) 0%, rgba(39,216,139,1) 100%);
|
|
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#199aa6', endColorstr='#27d88b', GradientType=1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.loadingcontent{
|
|
|
|
position: fixed;
|
|
|
|
height: 50px;
|
|
|
|
width: 100%;
|
|
|
|
margin: auto;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.sk-cube-grid {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sk-cube-grid .sk-cube {
|
|
|
|
width: 33%;
|
|
|
|
height: 33%;
|
|
|
|
background-color: #fff;
|
|
|
|
float: left;
|
|
|
|
-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
|
|
|
|
animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
.sk-cube-grid .sk-cube1 {
|
|
|
|
-webkit-animation-delay: 0.2s;
|
|
|
|
animation-delay: 0.2s; }
|
|
|
|
.sk-cube-grid .sk-cube2 {
|
|
|
|
-webkit-animation-delay: 0.3s;
|
|
|
|
animation-delay: 0.3s; }
|
|
|
|
.sk-cube-grid .sk-cube3 {
|
|
|
|
-webkit-animation-delay: 0.4s;
|
|
|
|
animation-delay: 0.4s; }
|
|
|
|
.sk-cube-grid .sk-cube4 {
|
|
|
|
-webkit-animation-delay: 0.1s;
|
|
|
|
animation-delay: 0.1s; }
|
|
|
|
.sk-cube-grid .sk-cube5 {
|
|
|
|
-webkit-animation-delay: 0.2s;
|
|
|
|
animation-delay: 0.2s; }
|
|
|
|
.sk-cube-grid .sk-cube6 {
|
|
|
|
-webkit-animation-delay: 0.3s;
|
|
|
|
animation-delay: 0.3s; }
|
|
|
|
.sk-cube-grid .sk-cube7 {
|
|
|
|
-webkit-animation-delay: 0s;
|
|
|
|
animation-delay: 0s; }
|
|
|
|
.sk-cube-grid .sk-cube8 {
|
|
|
|
-webkit-animation-delay: 0.1s;
|
|
|
|
animation-delay: 0.1s; }
|
|
|
|
.sk-cube-grid .sk-cube9 {
|
|
|
|
-webkit-animation-delay: 0.2s;
|
|
|
|
animation-delay: 0.2s; }
|
|
|
|
|
|
|
|
@-webkit-keyframes sk-cubeGridScaleDelay {
|
|
|
|
0%, 70%, 100% {
|
|
|
|
-webkit-transform: scale3D(1, 1, 1);
|
|
|
|
transform: scale3D(1, 1, 1);
|
|
|
|
} 35% {
|
|
|
|
-webkit-transform: scale3D(0, 0, 1);
|
|
|
|
transform: scale3D(0, 0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes sk-cubeGridScaleDelay {
|
|
|
|
0%, 70%, 100% {
|
|
|
|
-webkit-transform: scale3D(1, 1, 1);
|
|
|
|
transform: scale3D(1, 1, 1);
|
|
|
|
} 35% {
|
|
|
|
-webkit-transform: scale3D(0, 0, 1);
|
|
|
|
transform: scale3D(0, 0, 1);
|
|
|
|
}
|
|
|
|
}
|