33 lines
411 B
CSS
33 lines
411 B
CSS
|
|
/* === Couleur de fond de la page === */
|
||
|
|
body {
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
font-family: Arial, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === Titre principal === */
|
||
|
|
h1 {
|
||
|
|
color: #333;
|
||
|
|
font-size: 32px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === Sous-titres === */
|
||
|
|
h2 {
|
||
|
|
color: #555;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === Paragraphes === */
|
||
|
|
p {
|
||
|
|
color: #333;
|
||
|
|
font-size: 16px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === Liens === */
|
||
|
|
a {
|
||
|
|
color: blue;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* === Images === */
|
||
|
|
img {
|
||
|
|
max-width: 300px;
|
||
|
|
}
|