mirror of https://github.com/CIRCL/lookyloo
chg: Add CSS for stats
parent
c514bf5b58
commit
9fe6dfd306
|
@ -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;
|
||||
}
|
|
@ -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 %}
|
||||
|
|
Loading…
Reference in New Issue