47 lines
511 B
CSS
47 lines
511 B
CSS
|
|
body {
|
||
|
|
font-family: Helvetica Neue, Arial, sans-serif;
|
||
|
|
}
|
||
|
|
#radar{
|
||
|
|
display : flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
svg {
|
||
|
|
width:400px;
|
||
|
|
height:400px;
|
||
|
|
}
|
||
|
|
polygon {
|
||
|
|
fill: #ED1646;
|
||
|
|
opacity: .75;
|
||
|
|
}
|
||
|
|
|
||
|
|
circle {
|
||
|
|
fill: transparent;
|
||
|
|
stroke: #999;
|
||
|
|
}
|
||
|
|
|
||
|
|
text {
|
||
|
|
font-family: Futura, Helvetica Neue, Arial, sans-serif;
|
||
|
|
font-size: 10px;
|
||
|
|
fill: #666;
|
||
|
|
}
|
||
|
|
|
||
|
|
label {
|
||
|
|
display: inline-block;
|
||
|
|
margin-left: 10px;
|
||
|
|
width: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#raw {
|
||
|
|
/* position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 300px;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
#add {
|
||
|
|
margin-top: 1em;
|
||
|
|
}
|
||
|
|
|
||
|
|
.remove {
|
||
|
|
margin: 0 4px;
|
||
|
|
}
|