aboutsummaryrefslogtreecommitdiff
path: root/app/static/css/demo/evaluate.css
diff options
context:
space:
mode:
Diffstat (limited to 'app/static/css/demo/evaluate.css')
-rw-r--r--app/static/css/demo/evaluate.css57
1 files changed, 57 insertions, 0 deletions
diff --git a/app/static/css/demo/evaluate.css b/app/static/css/demo/evaluate.css
new file mode 100644
index 0000000..0c7dbc2
--- /dev/null
+++ b/app/static/css/demo/evaluate.css
@@ -0,0 +1,57 @@
+.graph-wrapper {
+ width: 90%;
+ margin: 0 auto;
+}
+
+#graph_user > svg {
+ width: 100%;
+ height: 100%;
+}
+
+#graph_true > svg {
+ width: 100%;
+ height: 100%;
+}
+
+.line {
+ fill: none;
+ stroke: blue;
+ clip-path: url(#clip);
+}
+
+circle {
+ clip-path: url(#clip);
+ fill: blue;
+}
+
+rect {
+ fill: white;
+ opacity: 0;
+}
+
+.marked {
+ fill: #fc8d62;
+ stroke: #fc8d62;
+}
+
+#next-btn {
+ text-align: right;
+ padding-bottom: 20px;
+}
+
+#lesson {
+ padding-top: 10px;
+ padding-bottom: 10px;
+}
+
+#lesson p {
+ font-size: 16px;
+}
+
+.ann-line {
+ stroke-dasharray: 5;
+ clip-path: url(#clip);
+ fill: #fc8d62;
+ stroke: #fc8d62;
+ stroke-width: 2px;
+}