/* CSS Stylesheet for pixl-chart demos */

body {
	/* background-color: #f4f4f4;  */
	background-color: white;
	font-family: Helvetica, sans-serif;
}

.header {
	height: 40px;
	margin-bottom: 75px;
}

.header button {
	float: right;
	margin-left: 20px;
}

.header h1 {
	font-size: 24px;
	color: #888;
}

.clear {
	clear: both;
}

div.container {
	position: relative;
	width: 60%;
	height: 400px;
	margin: 0 auto;
	background: white;

	/* box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.25); */
}

canvas.chart {
	width: 100%;
	height: 90vh;
}

body.dark {
	background-color: #222;
	color: white;
}

body.dark canvas.chart {
	background: black;
}