/*
Theme Name: coursinfochild
Version: 1.0
Description: A child theme of Longevity
Template: longevity
*/

@import url("../longevity/style.css");
}

/* repositionnement du fil d'ariane */
#breadcrumbs-sidebar {
    margin-bottom: -36px;
    margin-top: -21px;
}

/* exercise creation d un site web en partant de rien
  exo : créer un modèle de page tout bête, comprenant 3 blocs : 
   un bandeau, une zone de contenu, et un pied de page 
*/

div#mon_bandeau {
	width:600px;
	height:50px;
	background-color:#00CCFF;
	}
div#mon_contenu {
	float:left;
	width:500px;
	height:400px;
	background-color:#FFCC00;

	}
div#mon_piedpage {
	width:600px;
	height:50px;
	background-color:#33FF99;
    clear : both;
    }
div#mon_menu { 	
	float:left;
	width:100px; 	
	height:400px; 	
	background-color:#FF6699; 	
    }
div#mon_menuhaut {
	width:100px;
	height:200px;
	background-color:#66CC33;
	
} 
div#mon_menubas {
	width:100px;
	height:200px;
	background-color:#CC99CC;
		
}
div#mon_blocnews {
	float:right;
	width:150px;
	height:150px;
	background-color:#FF3300;
	}

/* contact form 7 boite de saisie de texte */
 
input[type="text"],
select,
textarea {
  display: block;
  width: 100%;
  height: 100px;
  padding: 6px 12px;
  font-size: 0.875rem;
  line-height: 1.42857143;
  color: red;
  background-color: #dfffff;
  border: 1px solid #d9d9d9;
}

/* création d'un éditeur WYSIWYG */

#editeur {
  width: 500px;
  height: 200px;
  border: 1px solid black;
  padding: 5px;
  overflow: auto;
}

