2013-10-09 18:15:47 +02:00
|
|
|
// RIGHT PANEL
|
|
|
|
.rightpanel {
|
|
|
|
position: absolute;
|
|
|
|
width: 17%;
|
2013-10-23 06:46:07 +02:00
|
|
|
// background-color: rgba(255, 0, 254, 0.4);
|
2013-10-16 23:11:06 +02:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2013-10-09 18:15:47 +02:00
|
|
|
}
|
|
|
|
.btnPrint {
|
|
|
|
margin: 1% 5% 5% 0%;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 163px;
|
|
|
|
height: auto;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.btnStop {
|
|
|
|
margin: 5% 10% 1% 5%;
|
|
|
|
float: right;
|
|
|
|
width: 90%;
|
|
|
|
max-width: 98px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.btnsSettingsInfo {
|
2013-10-16 23:11:06 +02:00
|
|
|
position: absolute;
|
|
|
|
bottom: 25px;
|
|
|
|
right: 5px;
|
|
|
|
width: 80%;
|
2013-10-09 18:15:47 +02:00
|
|
|
margin: 1% 5%;
|
2013-10-16 23:11:06 +02:00
|
|
|
max-width: 160px;
|
2013-10-09 18:15:47 +02:00
|
|
|
}
|
|
|
|
.btnInfo {
|
|
|
|
width: 40%;
|
|
|
|
max-width: 53px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
.btnSettings {
|
|
|
|
width: 40%;
|
|
|
|
max-width: 53px;
|
|
|
|
height: auto;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
2013-10-16 23:11:06 +02:00
|
|
|
PROGRESSGUAGE AND THERMOMETER SHARED STYLES
|
2013-10-09 18:15:47 +02:00
|
|
|
|
|
|
|
*/
|
2013-10-16 23:32:50 +02:00
|
|
|
.progressbarAppear {
|
|
|
|
/*margin-right: 1.5% !important;*/
|
|
|
|
right: -.5% !important;
|
|
|
|
}
|
|
|
|
.thermometerAppear {
|
|
|
|
/*margin-right: 1.5% !important;*/
|
|
|
|
right: -6.5% !important;
|
2013-10-09 18:15:47 +02:00
|
|
|
}
|
2013-10-16 23:11:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
PROGRESS GUAGE
|
|
|
|
|
|
|
|
*/
|
|
|
|
.progressbarCanvasContainerParent {
|
|
|
|
position:relative;
|
|
|
|
width:100%;
|
2013-10-10 19:18:29 +02:00
|
|
|
}
|
2013-10-16 23:11:06 +02:00
|
|
|
#progressbarCanvasContainer {
|
2013-10-10 19:18:29 +02:00
|
|
|
position: relative;
|
2013-10-16 23:19:18 +02:00
|
|
|
width: 50%;
|
2013-10-16 23:11:06 +02:00
|
|
|
float:right;
|
|
|
|
|
2013-10-16 23:32:50 +02:00
|
|
|
border: solid #000;
|
|
|
|
border-width: 2px 0 2px 2px;
|
|
|
|
border-radius: 15px 0 0 15px;
|
|
|
|
/*padding: 5px 0px 5px 5px;*/
|
|
|
|
padding: 5px;
|
|
|
|
background-color: #fff;
|
|
|
|
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
|
2013-10-16 23:11:06 +02:00
|
|
|
transition: right .40s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
2013-10-16 23:32:50 +02:00
|
|
|
right: -60%;
|
2013-10-22 11:00:33 +02:00
|
|
|
margin: 5% 0%;
|
2013-10-16 23:11:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#progressbarCanvas {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
background-color: #fff;
|
2013-10-16 23:32:50 +02:00
|
|
|
// border: solid #000;
|
|
|
|
// border-width: 2px 0 2px 2px;
|
|
|
|
// border-radius: 15px 0 0 15px;
|
|
|
|
// padding: 5px 0px 5px 5px;
|
|
|
|
//
|
|
|
|
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
2013-10-09 18:15:47 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 19:18:29 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
THERMOMETER
|
2013-10-09 18:15:47 +02:00
|
|
|
|
2013-10-10 19:18:29 +02:00
|
|
|
*/
|
2013-10-16 23:11:06 +02:00
|
|
|
.thermometerContainerParent {
|
|
|
|
position:relative;
|
|
|
|
width:100%;
|
2013-10-21 10:28:04 +02:00
|
|
|
padding-top: 10px;
|
2013-10-16 23:11:06 +02:00
|
|
|
}
|
2013-10-10 19:18:29 +02:00
|
|
|
#thermometerContainer {
|
2013-10-16 23:11:06 +02:00
|
|
|
position: relative;
|
2013-10-16 23:19:18 +02:00
|
|
|
width: 45%;
|
2013-10-16 23:11:06 +02:00
|
|
|
float: right;
|
|
|
|
|
2013-10-16 23:32:50 +02:00
|
|
|
background-color: #fff;
|
|
|
|
border: solid #000;
|
|
|
|
border-width: 2px 0 2px 2px;
|
|
|
|
border-radius: 15px 0 0 15px;
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
|
2013-10-16 23:11:06 +02:00
|
|
|
transition: right .50s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
2013-10-16 23:32:50 +02:00
|
|
|
right: -55%;
|
2013-10-10 19:18:29 +02:00
|
|
|
}
|
2013-10-16 23:11:06 +02:00
|
|
|
|
2013-10-10 19:18:29 +02:00
|
|
|
#thermometerCanvas {
|
2013-10-16 23:11:06 +02:00
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
background-color: #fff;
|
2013-10-16 23:32:50 +02:00
|
|
|
// border: solid #000;
|
|
|
|
// border-width: 2px 0 2px 2px;
|
|
|
|
// border-radius: 15px 0 0 15px;
|
|
|
|
// padding: 5px 0px 5px 5px;
|
|
|
|
//
|
|
|
|
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
|
|
|
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
|
2013-10-12 15:38:19 +02:00
|
|
|
}
|
2013-10-16 23:11:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
//#thermometerContainer {
|
|
|
|
// position: absolute;
|
|
|
|
// right: 25px;
|
|
|
|
// top: 370px;
|
|
|
|
//}
|
|
|
|
//#thermometerCanvas {
|
|
|
|
///*background: #59b2b8;*/
|
|
|
|
///*zoom: 2;*/
|
|
|
|
//}
|