diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-25 15:49:18 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-25 15:49:46 +0000 |
| commit | 9c98e5bc50971e91def3b4490deff727c72caa23 (patch) | |
| tree | dc38ef90e34a58d855d78ed981159189c2be0cd9 /app/static | |
| parent | bugfixes (diff) | |
| download | AnnotateChange-9c98e5bc50971e91def3b4490deff727c72caa23.tar.gz AnnotateChange-9c98e5bc50971e91def3b4490deff727c72caa23.zip | |
Start work on annotation view
Diffstat (limited to 'app/static')
| -rw-r--r-- | app/static/annotate.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/static/annotate.css b/app/static/annotate.css new file mode 100644 index 0000000..d6e30fc --- /dev/null +++ b/app/static/annotate.css @@ -0,0 +1,40 @@ +#graph { + margin: 0 auto; + text-align: center; +} + +/* +path { + stroke-width: 2; + fill: none; +} + +.axis path, .axis line { + fill: none; + stroke: grey; + stroke-width: 1; + shape-rendering: crispEdges; +} + +#changepoint-table { + margin: 0 auto; +} + +*/ + +.line { + fill: none; + stroke: blue; + clip-path: url(#clip); +} + +circle { + clip-path: url(#clip); + fill: blue; +} + +.zoom { + cursor: move; + fill: none; + pointer-events: fill; +} |
