-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dangle.css and maindendogram.css to styles and changed to .scss…
…, also added to main.scss
- Loading branch information
Showing
4 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* axis line test */ | ||
.axis path { | ||
fill: none; | ||
stroke:#000; | ||
stroke-width: 1.5px; | ||
shape-rendering: crispEdges; | ||
} | ||
|
||
/* axis tick marks */ | ||
.axis line { | ||
fill: none; | ||
stroke: #000; | ||
stroke-width: 1.1px; | ||
shape-rendering: crispEdges; | ||
} | ||
|
||
/* controls the axis text */ | ||
.axis text { | ||
fill: #333; | ||
stroke: none; | ||
shape-rendering: crispEdges; | ||
font-size: 16px; | ||
} | ||
|
||
/* controls the area */ | ||
.area.fill { | ||
fill: #e5f3f9; | ||
fill-opacity: 0.2; | ||
} | ||
|
||
/* controls the top line in area */ | ||
.area.line { | ||
fill: none; | ||
stroke: #058dc7; | ||
stroke-width: 6.0px; | ||
} | ||
|
||
.area.line.points { | ||
fill: #058dc7; | ||
stroke: #fff; | ||
stroke-width: 3.0px; | ||
} | ||
|
||
/* histogram styles */ | ||
.histo.rect { fill: #058dc7; } | ||
|
||
.bar.rect { | ||
fill: #058dc7; | ||
stroke: none; | ||
} | ||
|
||
.bar.text { | ||
fill: #000; | ||
stroke: none; | ||
font-size: 12px; | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters