23 lines
273 B
CSS
23 lines
273 B
CSS
|
body {
|
||
|
background-color: #d7d7af;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
max-width: 800px;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
text-align: center;
|
||
|
background-color: #ffffd7;
|
||
|
padding: 10px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
figure {
|
||
|
border: 2px dotted;
|
||
|
padding: 5px;
|
||
|
}
|