/*
	Author:			Niklas Menke <niklas-menke.de>
		
	Project:		Power analyser
	Description:	This project present electrical parameters on a website. 
					The electrical parameters are recorded by a Janitza UMG96S multifunction power analyser.
					An Arduino queries the data with the MODBUS RTU protocol and sends it to a database.
					The website loads the parameters from the database and updates itself automatically via AJAX.
	
	File:			gauges.css
	Description:	Styling for the gauges
	Date:			2020-07-11
	
	Version:		2.0.1
	Date:			2020-10-06
	
	Changelog:
		2.0.0:
			- Design revised (compatible for mobile devices)
		2.0.1:
			- Changed switching between Desktop and Mobile
*/

canvas {
	margin-top: 1em;
}

#content img {
	margin-right: 1em;
}

.topic {
	margin-left: .5em;
	margin-right: .5em;
}

.gaugesGroup {
	display: flex;
	align-items: center;
	flex-direction: column;
}

@media all and (min-width: 50em) {
	canvas {
		margin-top: 0;
	}
	
	.gaugesGroup {
		flex-direction: row;
		justify-content: space-around;
	}
}