mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-09 21:11:40 +01:00
32 lines
382 B
CSS
32 lines
382 B
CSS
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
background-color: #490a56;
|
||
|
color: #fff;
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
section {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
color: #490a56;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
background-color: #490a56;
|
||
|
color: #fff;
|
||
|
padding: 10px 20px;
|
||
|
text-align: center;
|
||
|
}
|