aboutsummaryrefslogtreecommitdiff
path: root/app/static
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-14 17:15:20 -0400
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-05-14 17:15:20 -0400
commit62af4cf1e56a27db3d4a1dc33a759c83790a963e (patch)
tree56a4b5919e86faf84223e51055cdab45a62229b4 /app/static
parentresource bugfix for firefox (diff)
downloadAnnotateChange-62af4cf1e56a27db3d4a1dc33a759c83790a963e.tar.gz
AnnotateChange-62af4cf1e56a27db3d4a1dc33a759c83790a963e.zip
Add support for viewing annotations
Diffstat (limited to 'app/static')
-rw-r--r--app/static/view_annotation.css60
1 files changed, 60 insertions, 0 deletions
diff --git a/app/static/view_annotation.css b/app/static/view_annotation.css
new file mode 100644
index 0000000..dd291ef
--- /dev/null
+++ b/app/static/view_annotation.css
@@ -0,0 +1,60 @@
+#graph {
+ margin: 0 auto;
+ text-align: center;
+}
+
+.line {
+ fill: none;
+ stroke: blue;
+ clip-path: url(#clip);
+}
+
+.ann-line {
+ fill: none;
+ stroke-dasharray: 3,3;
+ 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;
+}
+
+.user-3 {
+ fill: #8da0cb;
+}
+
+.user-4 {
+ fill: #e78ac3;
+}
+
+.user-5 {
+ fill: #a6d854;
+}
+
+.user-6 {
+ fill: #ffd92f;
+}
+
+.user-7 {
+ fill: #e5c494;
+}
+
+.user-8 {
+ fill: #b3b3b3;
+}
+