mirror of
https://github.com/bendtherules/opencharts.git
synced 2026-08-18 13:52:49 +00:00
97 lines
1.9 KiB
CSS
97 lines
1.9 KiB
CSS
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
.chart {
|
|
width: 50vw;
|
|
height: 50vh;
|
|
margin: 25vh 25vw;
|
|
background-color: #90ee90;
|
|
position: relative;
|
|
}
|
|
.chart-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.axis {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: 4;
|
|
}
|
|
.axis .axis-x,
|
|
.axis .axis-y {
|
|
position: absolute;
|
|
background-color: #d3d3d3;
|
|
}
|
|
.axis .axis-y {
|
|
width: 1em;
|
|
height: 100%;
|
|
}
|
|
.axis .axis-y .axis-line {
|
|
left: 50%;
|
|
}
|
|
.axis .axis-y .axis-line .axis-line-container {
|
|
margin: 0 -0.125em;
|
|
height: 100%;
|
|
width: 0.25em;
|
|
}
|
|
.axis .axis-x {
|
|
height: 1em;
|
|
width: 100%;
|
|
bottom: 0;
|
|
}
|
|
.axis .axis-x .axis-line {
|
|
top: 50%;
|
|
}
|
|
.axis .axis-x .axis-line .axis-line-container {
|
|
margin: -0.125em 0;
|
|
height: 0.25em;
|
|
width: 100%;
|
|
}
|
|
.axis-line {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: 5;
|
|
}
|
|
.axis-line-container {
|
|
background-color: #000;
|
|
}
|
|
.scene {
|
|
position: absolute;
|
|
z-index: 1;
|
|
background-color: #008000;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding-left: 1em;
|
|
padding-bottom: 1em;
|
|
}
|
|
.scene .scene-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #add8e6;
|
|
}
|
|
.line-part {
|
|
background-color: #008000;
|
|
position: absolute;
|
|
}
|
|
/*{{ console.log(it.points.length); }}*/
|
|
/*{{ for(count=0;count<it.points.length;count++){ }}*/
|
|
.part-/*{{= count+1}}*/ {
|
|
/* top: {{=it.points[count][0]}};
|
|
left: {{=it.points[count][1]}}; */
|
|
junk: "";
|
|
}
|
|
/*{{ } }}*/
|
|
.line-inner {
|
|
position: absolute;
|
|
/*left :-{{=it.point_radius}};*/
|
|
/*top :-{{=it.point_radius}};*/
|
|
/*width :{{= Number(it.point_radius.slice(0,it.point_radius.length-2))*2 +it.point_radius.slice(it.point_radius.length-2) }};*/
|
|
/*height :{{= Number(it.point_radius.slice(0,it.point_radius.length-2))*2 +it.point_radius.slice(it.point_radius.length-2) }};*/
|
|
border-radius: 50% 50%;
|
|
background-color: #008000;
|
|
}
|