40 lines
739 B
SCSS
40 lines
739 B
SCSS
@import '../variable';
|
|
/*******************
|
|
Campaign
|
|
*******************/
|
|
.campaign{
|
|
position: relative;
|
|
height: 250px;
|
|
.ct-series-a .ct-area {
|
|
fill-opacity:0.2;
|
|
fill: url(#gradient);
|
|
}
|
|
.ct-series-a .ct-line, .ct-series-a .ct-point{
|
|
stroke: $green;
|
|
stroke-width:2px;
|
|
}
|
|
.ct-series-b .ct-area{
|
|
fill: $blue;
|
|
fill-opacity:0.1;
|
|
|
|
}
|
|
.ct-series-b .ct-line, .ct-series-b .ct-point {
|
|
stroke: $blue;
|
|
stroke-width:2px;
|
|
}
|
|
.ct-series-a .ct-point, .ct-series-b .ct-point{
|
|
stroke-width:6px;
|
|
}
|
|
}
|
|
/*******************
|
|
Our income
|
|
*******************/
|
|
.o-income{
|
|
.c3 line, .c3 path{
|
|
stroke:$border-color;
|
|
}
|
|
}
|
|
|
|
|
|
|