aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/quattro/style.php
blob: b6104a170df7eaec2ae6e37d373ae259670ad242 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
	$color = false;
	if (local_user()) {
		$color = get_pconfig(local_user(), "quattro","color");
		$quattro_align = get_pconfig(local_user(), 'quattro', 'align' );
	}
	
	if ($color===false) $color="dark";
		
	if (file_exists("$THEMEPATH/$color/style.css")){
		echo file_get_contents("$THEMEPATH/$color/style.css");
	}


	if($quattro_align=="center"){
		echo "
			html { width: 100%; margin:0px; padding:0px; }
			body {
				margin: 50px auto;
				width: 900px;
			}
		";
	}