fixed css color error

This commit is contained in:
Walker Waylon Scott 2017-07-20 22:53:34 -05:00
parent 41c32b757a
commit 2b611638b2
3 changed files with 7 additions and 7 deletions

View file

@ -49,15 +49,15 @@ body{
.c3 .c3-axis-x path, .c3 .c3-axis-x line,
.c3 .c3-axis-y path, .c3 .c3-axis-y line,
.c3 .c3-axis-y2 path, .c3 .c3-axis-y2 line {
stroke: #0071A7;
stroke: #0C243B;
}
.c3 .c3-axis-x g,
.c3 .c3-axis-y g,
.c3 .c3-axis-y2 g,
.c3 .c3-legend-item-data text {
color: #0071A7;
fill: #0071A7;
color: #0C243B;
fill: #0C243B;
}
#timeseries-chart .c3-line {
stroke-width: 2px;
@ -95,7 +95,7 @@ body{
#score{
/*color: var(--score-color);*/
color: #0071A7;
color: #0C243B;
/*color: var(--light-blue);*/
}

View file

@ -8,7 +8,7 @@ var style = getComputedStyle(document.body);
score_color = style.getPropertyValue('--score-color');
gross_color = style.getPropertyValue('--gross-color');
score_color = '#0071A7';
score_color = '#0C243B';
gross_color = '#4D9913';
// }

View file

@ -12,7 +12,7 @@
<script src="static/node_modules/chosen-js/chosen.jquery.js"></script>
<script src='static/node_modules/jqcloud2/src/jqcloud.js'></script>
<!-- <script src='static/node_modules/chroma-js/chroma.js'></script> -->
<link rel='stylesheet' type='text/css' href='static/css/custom.css?v=3'>
<link rel='stylesheet' type='text/css' href='static/css/custom.css?v=4'>
{% endblock %}
@ -115,5 +115,5 @@
</div>
</div>
</div>
<script src='static/js/enthusiast.js?v=3'></script>
<script src='static/js/enthusiast.js?v=4'></script>
{% endblock %}