<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.red
{
    	color: red; /* mettre un mot en couleur avec &lt;span class = "red"&gt; */
		
}
.green
{
    	color: rgb(0,64,0); /* mettre un mot en couleur avec &lt;span class = "rgb(0,64,0)"&gt; */
		
}
.souligne
{
    text-decoration: underline; /* souligne un mot avec &lt;span class = "souligne"&gt; */
}

body
{
    background-image: url("fond9.jpg");
	background-attachment: fixed; /* Le fond restera fixe */
}
header
{
  text-align: center;  
}
h1
{
    border: 3px rgb(0,64,0) groove;
	max-width: 800px;
	border-radius: 10px;
}

h1 /* Grand titre*/
{
	color: rgb(0,64,0);
    font-size: 2em;
	font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif; 
	font-weight: bold; 
	text-align: center;
	margin: auto; /* On peut donc demander Ã&nbsp; ce que le bloc soit centrÃ© avec auto */
}
 h2 /* Titre h1-1 */
{
    font-size: 1.5em;
	font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif;
	color: black;
	width: 50%;
    min-width: 700px;
	margin-left:0px;
	font-weight: bold;/* gras */
	text-decoration: underline;
}
h3
{
    font-family: Arial, Georgia, "Time New Roman",  Verdana, sans-serif;
	font-size: 0.8em;
	color: Black;
	width: 0%;
    min-width: 650px;
	margin-left:100px;
}
h4
{
    text-decoration: underline;
	font-family: Arial, Georgia, "Time New Roman",  Verdana, sans-serif;
	font-size: 1em;
	color: Black;
	width: 0%;
    min-width: 800px;
}
h5 /*LÃ©gendes et photos*/
{
    text-align: center;
	font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif;
	
	
	font-size: 1em;
}
h6 /*Photos en-tÃªte*/
{
    text-align: center;
	font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif;
	color: rgb(0,64,0);
	margin-left: 0px;
	font-size: 1.5em;
	font-weight: bold;/* gras */
	text-decoration: underline;
}
figure
{
 border: 3px maroon double;
 text-align: center;
}
img
{
 
 text-align: center;
}
ul/* Contenu de nav */
{
    font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif;
	margin-left: -10px
}
ol
{
    font-family: Arial, Georgia,"Time New Roman",  Verdana, sans-serif;
	margin-left: 200px;
	margin-right: 200px;
	min-width: 400px;
}
li
{
    font-family: Arial, Georgia,"Time New Roman", Verdana, sans-serif;
	margin-left: 0px;
	text-align: justify;
	font-size: 1em;
}
p
{
  font-family: Arial, Georgia, "Time New Roman",  Verdana, sans-serif;
  color: black;
  text-align: justify;
  font-size: 1.2em;
  margin-left: 0px;
    min-width: 800px;
}
nav /*panneau de navigation*/
{
    display: inline-block;
    border: 3px solid rgb(0,64,0);
    margin-left: 30px;
	float: ;
    width: 150px;
 }
div
 {
   	margin-left: 20px;
	font-size: 1em;
 }
section
{
    margin-left: 200px;
    border: 0px solid blue;
	width: 800px;
}
aside/*photo de droite*/
{
    vertical-align: top;
	margin-right: 70px;
	float: right;
    width: 150px;
 }
 table
{
    margin-left: 0px;
	border-collapse: collapse;
	border: 3px rgb(0,64,0) groove;/* Mettre une bordure ext */ 
}
td, th 
{
    	width: 450px;
	font-family: Arial, Georgia, "Time New Roman",  Verdana, sans-serif;
  color: black;
  text-align: left;
  font-size: 1em;
}
td
{
    	margin-left: 50px;
}

mark
{
    /* La couleur de fond prend le pas sur celle de toute la page */
    background-color: aqua;
    color: black;
}
</pre></body></html>