diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-07 13:44:02 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-07 13:44:02 +0100 |
| commit | 90485ed40e0a3c31e4071bec9eeb26257f7db690 (patch) | |
| tree | 0d9476da91b3e95ae35f1e74b7d226e5f4d9bb2a /app/static/css/admin | |
| parent | Add a usage note for the graph (diff) | |
| download | AnnotateChange-90485ed40e0a3c31e4071bec9eeb26257f7db690.tar.gz AnnotateChange-90485ed40e0a3c31e4071bec9eeb26257f7db690.zip | |
Reorganise static folder
Diffstat (limited to 'app/static/css/admin')
| -rw-r--r-- | app/static/css/admin/view_annotation.css | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/static/css/admin/view_annotation.css b/app/static/css/admin/view_annotation.css new file mode 100644 index 0000000..11bf3c8 --- /dev/null +++ b/app/static/css/admin/view_annotation.css @@ -0,0 +1,66 @@ +#graph { + margin: 0 auto; + text-align: center; +} + +.line { + fill: none; + stroke: blue; + clip-path: url(#clip); +} + +.ann-line { + fill: none; + stroke-dasharray: 5; + clip-path: url(#clip); +} + +circle { + clip-path: url(#clip); + fill: blue; +} + +rect { + fill: white; + opacity: 0; +} + +.user-1 { + fill: #66c2a5; + stroke: #66c2a5; +} + +.user-2 { + fill: #fc8d62; + stroke: #fc8d62; +} + +.user-3 { + fill: #8da0cb; + stroke: #8da0cb; +} + +.user-4 { + fill: #e78ac3; + stroke: #e78ac3; +} + +.user-5 { + fill: #a6d854; + stroke: #a6d854; +} + +.user-6 { + fill: #ffd92f; + stroke: #ffd92f; +} + +.user-7 { + fill: #e5c494; + stroke: #e5c494; +} + +.user-8 { + fill: #b3b3b3; + stroke: #b3b3b3; +} |
