@charset "utf-8";
/* LESS Document */

// LESS functions
.box-shadow(@droite: 10px, @bas: 10px, @degrade: 0, @couleur: #000) {
	-moz-box-shadow: @droite @bas @degrade @couleur; 
	-webkit-box-shadow: @droite @bas @degrade @couleur; 
	box-shadow: @droite @bas @degrade @couleur; 
}

.text-shadow(@droite: 5px, @bas: 5px, @degrade: 0, @couleur: #000) {
	-moz-text-shadow: @droite @bas @degrade @couleur;
	-webkit-text-shadow: @droite @bas @degrade @couleur;
	text-shadow: @droite @bas @degrade @couleur;
}

.ahover(@opacity: 1){
	a
	{
		text-decoration:none;
		color:inherit;
		font-family:inherit;
		text-transform:inherit;
		font-size:inherit;
	}
		
	opacity: @opacity;
	&:hover{ opacity:1; }
}


//CSS content

//@couleur_principale: #ECD195;
//@couleur_principale: #7EBBDC;
@couleur_principale: #D8AB68;

body
{
	background-color:#333;
	text-align:center;
	margin:0px;
	padding:0px;
	
	color:@couleur_principale;
	font-family:verdana,arial,helvetica,sans-serif;
	text-transform:uppercase;

}

#header
{
	height:130px;
	background-color:#444;
	.box-shadow(0px, -5px, 20px, #000);
	
	
	text-align:center;
	margin:0px;
	padding-top:10px;
	
	h1
	{
		font-size:42px;
		font-weight:normal;
		letter-spacing:2px;
		
		color: darken(@couleur_principale, 10%);
		
		a
		{
			text-decoration:none;
			color:inherit;
			font-family:inherit;
			text-transform:inherit;
			font-size:inherit;
		}
	}
	
	h3
	{
		position:absolute;
		top: 90px;
		left: 100px;
		text-align:right;
		margin-right:50px;
		color: lighten(@couleur_principale, 5%);
		font-size:18px;
		opacity:0.5;
		
		.ahover(0.8);
	}
	h2
	{
		position:relative;
		top:-15px;
		padding:0px;
		font-weight:lighter;
		color: lighten(@couleur_principale, 10%);
	}
	
	#sidebar
	{
		position: absolute;
		background-color: #333;
		right: 40px;
		top: 0px;
		height:130px;
		padding:10px;
		padding-bottom:10px;
		padding-top:0px;
		
		font-size: 10px;
		
		.ahover(0.8);
		a{ font-weight:bold; background-color: #333; }
	}
	
	#blog
	{
		position: absolute;
		left: 20px;
		
		.ahover(0.5);
	}
}


#content
{
	position:relative;
	margin-bottom:60px;
	margin-top:80px;
	clear:both;
	
	.ahover(1);
	a{ font-weight:bold; opacity: 0.8; &:hover{ opacity:1; } }
}

#space
{
	clear:both;
	width:100%;
	height:100px;
}

#footer
{
	display:block;
	clear: both;
	//position:fixed;
	bottom:0px;
	width:100%;
	
	border-top:1px solid #222;
	background-color:#444;
	padding-top:10px;
	padding-bottom: 20px;
	
	p
	{
		display:inline;
		color: lighten(@couleur_principale, 10%);
		font-size:12px;
		font-weight:lighter;
		opacity: 0.5;
		text-transform:none;
		
		a
		{
			text-decoration:none;
			color:inherit;
			opacity:0.7 ;
			text-transform:none;
			font-weight:bold;
			&:hover{ opacity:1; }
			
			.cache{ display:none; }
		}
		
		strong{ font-weight:bold; }
	}
}


.article
{
	background-color: #EEE;
	color: #111;
	font-size:13px;
	text-transform:none;
	text-align:left;
	padding: 25px;
	padding-left:40px;
	margin: 25px;
	
	.box-shadow(0px, 0px, 20px, #222);
	
	.ahover(1);
	a{ opacity: 0.8; &:hover{ opacity:1; } }
	
	h2
	{
		font-size: 28px;
		margin-bottom: -10px;
	}
	
	.date
	{
		font-size: 17px;
		margin-bottom: 50px;
	}
	
	.chapo
	{
		font-weight: bold;
	}
	
	.tags
	{
		margin-top: 40px;
		font-size:14px;
		font-style:italic;
	}
}

.article
{
	background-color: #EEE;
	color: #111;
	font-size:13px;
	text-transform:none;
	text-align:left;
	padding: 25px;
	padding-left:40px;
	margin: 25px;
	
	.box-shadow(0px, 0px, 20px, #222);
	
	.ahover(1);
	a{ opacity: 0.8; &:hover{ opacity:1; } }
	
	h2
	{
		font-size: 28px;
		margin-bottom: -10px;
	}
	
	.date
	{
		font-size: 17px;
		margin-bottom: 50px;
	}
	
	.chapo
	{
		font-weight: bold;
	}
	
	.tags
	{
		margin-top: 40px;
		font-size:12px;
		font-style:italic;
	}
	
	p{ text-indent: 20px; }
}


.comment
{
	background-color: #EEE;
	color: #111;
	font-size:13px;
	text-transform:none;
	text-align:left;
	padding: 10px;
	padding-left:50px;
	margin: 15px;
	margin-left: 40px;
	margin-right: 40px;
	
	.box-shadow(0px, 0px, 20px, #222);
	
	.ahover(1);
	a{ opacity: 0.8; &:hover{ opacity:1; } }
}


fieldset
{
	border-style: none; 
	font-size:14px;
	text-align: right;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
}


