chg: Add CSS for stats

pull/135/head
Raphaël Vinot 2020-11-27 09:56:39 +01:00
parent c514bf5b58
commit 9fe6dfd306
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,20 @@
.line {
fill: none;
stroke: #ffab00;
stroke-width: 3;
}
.overlay {
fill: none;
pointer-events: all;
}
.dot {
fill: #ffab00;
stroke: #fff;
}
.focus circle {
fill: none;
stroke: steelblue;
}

View File

@ -78,3 +78,8 @@
<script src='{{ url_for('static', filename='d3.v6.min.js') }}'></script>
<script src='{{ url_for('static', filename='stats_graph.js') }}'></script>
{% endblock %}
{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ url_for('static', filename='stats.css') }}">
{% endblock %}