16 lines
312 B
CSS
16 lines
312 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: white;
|
|
margin: 1em auto;
|
|
width: 550px;
|
|
padding: 0 1em 1em 0;
|
|
border: 1px solid black;
|
|
border-radius: 1em;
|
|
text-align: center;
|
|
}
|
|
h1, h2 {
|
|
color: cornflowerblue;
|
|
}
|
|
li {
|
|
display: inline;
|
|
} |