Set dark colors & update charts style

This commit is contained in:
2020-11-18 18:04:38 +01:00
parent 62cb06838b
commit e7da3eb44e
4 changed files with 38 additions and 18 deletions

View File

@ -50,20 +50,19 @@
/*** lined-paper background ***/
position: relative;
background: #fff;
background: -webkit-gradient(linear, 0 0, 0 100%, from(#d1d1d1), color-stop(4%, #fff)) 0 0;
background: -webkit-linear-gradient(top, #d1d1d1 0%, #fff 4%) 0 0;
background: -moz-linear-gradient(top, #d1d1d1 0%, #fff 4%) 0 0;
background: -ms-linear-gradient(top, #d1d1d1 0%, #fff 4%) 0 0;
background: -o-linear-gradient(top, #d1d1d1 0%, #fff 4%) 0 0;
background: linear-gradient(top, #d1d1d1 0%, #fff 4%) 0 0;
background-size: 100% 40px;
border-radius: 3px;
}
.chart_histogram_legend {
margin-right: 0.5em;
}
.chart_histogram_col {
border-top: dotted 1px;
margin-top: 0.5em;
max-width: 2em;
display: flex;
@ -73,7 +72,7 @@
.chart_histogram_col_line {
display: flex;
width: 1em;
width: 100%;
margin: auto;
background-color: #785ddc;
@ -81,9 +80,6 @@
border-color: #e2e8f0;
border-style: solid;
border-width: 0.1em;
border-radius: 1em;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
transition: all 0.2s linear;
}