2022-2023/1NSI/01_Web_HTML_CSS/solutions/melange/style.css
Bertrand Benjamin bb7c176ef3
All checks were successful
continuous-integration/drone/push Build is passing
Feat: ajout un exercice bilan sur le chapitre
2022-09-11 10:16:05 +02:00

43 lines
456 B
CSS

header {
background-color: lightgrey;
color: white;
text-align: center;
padding: 20px;
}
section {
margin: 50px;
padding: 30px;
}
#section1 {
background-color: lightgrey;
}
#section3 {
border: 4px solid black;
}
p {
color: blue;
}
ul {
background-color: orange;
}
li {
background-color: red;
}
footer {
text-align: center;
border: 4px solid black;
}
img {
height: 100px;
margin: 20px;
}