/*
	Fichier CSS supplémentaire pour ajouter / modifier des bafouilles sans modifier la CSS de dcBlogStrap
*/

/* modif mettre les valeurs des couleurs de l'ancien thème ici et rajouter des html h1 a avec ces couleurs là */

html a { color: #428BCA; /* modif valeur d'origine #c21414 */ }
html a:hover, html a:active, html a:focus { text-decoration: none; outline: none; color: #2a6496; /* modif valeur d'origine #b10303 */ }

html h1 a { color: #9ac528; /* modif valeur d'origine #c21414 */ }
html h1 a:hover, html a:active, html a:focus { text-decoration: none; outline: none; color: #2a6496; /* modif valeur d'origine #b10303 */ }

html h2 a { color: #9ac528; /* modif valeur d'origine #c21414 */ }
html h2 a:hover, html a:active, html a:focus { text-decoration: none; outline: none; color: #2a6496; /* modif valeur d'origine #b10303 */ }

html h3 a { color: #9ac528; /* modif valeur d'origine #c21414 */ }
html h3 a:hover, html a:active, html a:focus { text-decoration: none; outline: none; color: #2a6496; /* modif valeur d'origine #b10303 */ }

/* fin modif */

/* modif couleur sidebar */

#sidebar h2 {
	margin: 0;
  	padding: 0 0 0 1em;
	height: 3em;
  	line-height: 3em;;
	background: #2E3539;  /* couleur d'origine #06080b */
	color: #fff;
	font-size: 1.075em;
	font-weight: 600;
        border-top: 2px solid #2A6496;
}

#sidebar h2:after {
  	background: #fff; /* modif couleur background origine #c21414 */
        color: #2A6496;  /* modif ajout paramètre color */
  	width: 3em;
  	text-align: center;
  	font-family: FontAwesome;
    content: "\f0da";
  	float: right;
  	border-left: 2px solid #fff;
        border-right: 2px solid #2A6496;
}

/* fin modif */


/* modif sidebar H3 même si pas sur que ce soit utile :-) */

#sidebar h3 {
	padding: 0.6em 0;
  	margin: 0;
	background: #e5e5e5;
	text-align: center;
	border-bottom: 1px solid #06080b; /* modif couleur origine #06080b */
	font-size: 1em;
	font-weight: 700;
}

/* fin modif */

/* modif couleur bouton "Lire la suite" */
a.btn { background-color: #43a6df; }
a.btn { border-color: #3c95c8; }

a.btn:hover, a.btn:focus { background-color: #9ac528; }
a.btn:hover, a.btn:focus { border-color: #8ab124; }

/* fin modif */

	#top .navbar.navbar-custom li a {
  		height: 5em;
  		line-height: 5em;
  		padding: 0 0.5em;
  		margin-left: 0.6em;
  		background: none #43A6DF;  /* modif couleur bouton. couleur d'origine #06080b */
  		text-align: center;
  		text-shadow: none;
  		font-size: 1.1em;
  		color: #fff;
  		margin-bottom: 0;
  		transition: all 250ms ease-in
	}
	#top .navbar.navbar-custom li:first-child a { margin-left: 0; }
	#top .navbar.navbar-custom li.active a,
	#top .navbar.navbar-custom li a:hover,
	#top .navbar.navbar-custom li a:active,
	#top .navbar.navbar-custom li a:focus { background-color: #8AB124; } /* modif couleur bouton actif. couleur d'origine  #c21414 */


.post-content blockquote, .post-excerpt blockquote {
	background:#F5F5F5 url(/public/blockquote.png) no-repeat 10px 15px;
	border:1px solid #C0C0C0;
	color:#404040;
	padding:0 10px 10px 100px;
	margin:50px 0;
	font-size: 1em;
	/*css3*/
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	-moz-box-shadow:3px 3px 6px 0 #A9A9A9;
	-webkit-box-shadow:3px 3px 6px #A9A9A9;
	box-shadow:3px 3px 6px 0 #A9A9A9;
}