31 lines
458 B
CSS
31 lines
458 B
CSS
|
body{
|
||
|
background-color: hsl(200, 80%, 30%);
|
||
|
color: hsl(30, 50%, 80%);
|
||
|
padding: 1rem 10rem;
|
||
|
}
|
||
|
|
||
|
header{
|
||
|
margin-bottom: 3rem;
|
||
|
}
|
||
|
|
||
|
section{
|
||
|
background-color: hsl(200, 80%, 80%);
|
||
|
margin-bottom: 4rem;
|
||
|
border: 2px black solid;
|
||
|
border-radius: 10px;
|
||
|
padding: 3px;
|
||
|
}
|
||
|
|
||
|
article{
|
||
|
background-color: hsl(200, 80%, 50%);
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
p{
|
||
|
background-color: hsl(200, 80%, 20%);
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
aside{
|
||
|
float: right;
|
||
|
}
|