148 lines
3.2 KiB
CSS
148 lines
3.2 KiB
CSS
/*Import fonts!*/
|
|
@import url('fonts.min.css');
|
|
/* Gestione blocchi base */
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
background-color: #5d5d5d;
|
|
}
|
|
body .ui-body-a,
|
|
body .ui-body-c,
|
|
body .ui-overlay-c {
|
|
text-shadow: 0 0 0;
|
|
}
|
|
/* END: gestione blocchi base */
|
|
/* area semafori*/
|
|
.semBlinkV,
|
|
.semV,
|
|
.semV_b {
|
|
background: #009036;
|
|
background: rgba(0, 255, 80, 0.6);
|
|
color: #FFFF66;
|
|
}
|
|
.semBlinkS,
|
|
.semS,
|
|
.semS_b {
|
|
background-color: #bcbcbc;
|
|
background: rgba(180, 180, 180, 0.6);
|
|
}
|
|
.semG {
|
|
text-align: left;
|
|
background: #8a8d27;
|
|
background: rgba(230, 210, 0, 0.6);
|
|
padding: 0px 4px 0px 4px;
|
|
color: #000;
|
|
}
|
|
.semG_b {
|
|
text-align: left;
|
|
background: #f9ff18;
|
|
background: rgba(255, 255, 0, 0.8);
|
|
padding: 0px 4px 0px 4px;
|
|
color: #333;
|
|
}
|
|
.semR {
|
|
text-align: left;
|
|
background-color: #7a000e;
|
|
background: rgba(200, 0, 5, 0.6);
|
|
padding: 0px 4px 0px 4px;
|
|
color: #959500;
|
|
}
|
|
.semR_b {
|
|
text-align: left;
|
|
background-color: #ff243f;
|
|
background: rgba(255, 60, 80, 0.8);
|
|
padding: 0px 4px 0px 4px;
|
|
color: #ffff32;
|
|
}
|
|
/* semafori con animazione blinking */
|
|
.no-cpu {
|
|
-moz-transform: translateZ(0);
|
|
-o-transform: translateZ(0);
|
|
-webkit-transform: translateZ(0);
|
|
-ms-transform: translateZ(0);
|
|
transform: translateZ(0);
|
|
}
|
|
@-webkit-keyframes blinkBack {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|
|
@-moz-keyframes blinkBack {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|
|
@-o-keyframes blinkBack {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|
|
@keyframes blinkBack {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|
|
.semBlinkG {
|
|
background: linear-gradient(270deg, #8a8d27, #f9ff18);
|
|
background-size: 400% 400%;
|
|
-webkit-animation: blinkBack 2s ease infinite;
|
|
-moz-animation: blinkBack 2s ease infinite;
|
|
-o-animation: blinkBack 2s ease infinite;
|
|
animation: blinkBack 2s ease infinite;
|
|
}
|
|
.semBlinkR {
|
|
background: linear-gradient(270deg, #7a000e, #ff243f);
|
|
background-size: 400% 400%;
|
|
-webkit-animation: blinkBack 2s ease infinite;
|
|
-moz-animation: blinkBack 2s ease infinite;
|
|
-o-animation: blinkBack 2s ease infinite;
|
|
animation: blinkBack 2s ease infinite;
|
|
color: Yellow;
|
|
}
|
|
/*end semafori */
|
|
/* MAIN: gestione layout dinamico mappa... */
|
|
/* A bit custom styling */
|
|
.statusMap {
|
|
background: #222;
|
|
}
|
|
/* Link to the Google webfont is in the head */
|
|
.statusMap .ui-title,
|
|
.statusMap .ui-li-aside {
|
|
font-family: 'Open Sans Condensed', sans-serif;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
font-size: 4.2em;
|
|
line-height: 1.1em;
|
|
color: #DEDEDE;
|
|
text-shadow: 2px 2px 4px #000;
|
|
text-align: center;
|
|
background: linear-gradient(270deg, rgba(20, 20, 20, 0.7), rgba(100, 100, 100, 0.7), rgba(20, 20, 20, 0.7));
|
|
}
|
|
.statusMap .ui-footer {
|
|
color: #CDCDCD;
|
|
background: linear-gradient(270deg, rgba(10, 10, 10, 0.7), rgba(80, 80, 80, 0.7), rgba(10, 10, 10, 0.7));
|
|
}
|
|
/* END: gestione layout dinamico mappa... */ |