node-red-contrib-jwht-map/worldmap/css/map.css

173 lines
2.8 KiB
CSS
Raw Normal View History

2016-04-01 18:31:07 +08:00
body {
width:100%;
left:0px;
margin:0;
padding:0;
font:14px Verdana, Arial, sans-serif;
}
a {
color:#444;
text-decoration:none;
}
.topbar {
font-size:16px;
vertical-align:middle;
}
2016-04-01 18:31:07 +08:00
#topbar {
color:#c7c7c7;
2016-04-01 18:31:07 +08:00
background-color:black;
position:fixed;
top:0px;
left:0px;
height:40px;
line-height:40px;
2016-05-08 18:07:09 +08:00
width:100%;
2016-04-01 18:31:07 +08:00
}
#topbar img {
padding-left:12px;
padding-right:8px;
vertical-align: middle;
}
2016-04-01 18:31:07 +08:00
#results {
position:fixed;
background-color:black;
2016-04-01 18:31:07 +08:00
top:6px;
right:8px;
height:40px;
2016-04-01 18:31:07 +08:00
}
#map {
position:fixed;
top:40px;
2016-04-01 18:31:07 +08:00
bottom:0px;
min-width:100%;
display:block;
}
#foot {
position:absolute;
2018-06-27 03:42:24 +08:00
bottom:1px;
left:-1px;
z-index:1;
font-size:9px;
2016-04-01 18:31:07 +08:00
}
#heat {
position:absolute;
height:20px;
bottom:20px;
right:10px;
z-index:10;
}
#heat button {
padding:2px 10px;
border-radius:4px;
background-color:#fff;
}
#menu {
color:#fff;
background-color:#000;
position:fixed;
top:40px;
2016-04-01 18:31:07 +08:00
right:0px;
width:200px;
z-index:9999;
}
#menu td {
font-size:14px;
padding-top:2px;
padding-left:8px;
}
#menu input {
color:#fff;
background-color:#666;
text-align:right;
padding-right:7px;
2016-04-01 18:31:07 +08:00
border:2px solid #000;
line-height:20px;
}
#menu input[type=checkbox], input[type=radio] {
vertical-align:middle;
position:relative;
bottom:1px;
}
#rinput {
font-size:14px;
padding:4px;
height:20px;
}
.circle {
background-color:rgba(255,255,40,0.7);
border-color:darkgrey;
border-radius:4px;
border-style:solid;
border-width:2px;
}
.f {
background-color: rgba(30,120,255,0.6);
border-color: dodgerblue;
}
.h {
background-color: rgba(255,60,0,0.7);
border-color: red;
border-radius: 8px;
}
.n {
background-color: rgba(40,255,40,0.6);
border-color: green;
}
.p {
background-color: rgba(255,0,255,0.5);
border-color: yellow;
border-radius: 1px;
}
.e {
background-color: rgba(255,255,255,0);
border-color: black;
border-radius: 11px;
}
.up-triangle {
width:0 !important;
height:0 !important;
border-bottom:20px solid red;
border-left:10px solid transparent;
border-right:10px solid transparent;
}
.diamond {
width:80px !important;
height:80px !important;
background:purple;
margin:3px 0 0 30px !important;
/* Rotate */
-webkit-transform:rotate(-45deg) !important;
-moz-transform:rotate(-45deg);
-ms-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
/* Rotate Origin */
-webkit-transform-origin:0 100% !important;
-moz-transform-origin:0 100%;
-ms-transform-origin:0 100%;
-o-transform-origin:0 100%;
transform-origin:0 100%;
}