26 lines
338 B
CSS
26 lines
338 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
font-size: 100%;
|
|
width: 650px;
|
|
margin: 0 auto;
|
|
}
|
|
section {
|
|
padding: 15px 25px;
|
|
}
|
|
h1 {
|
|
font-size: 150%;
|
|
margin-bottom: .5em;
|
|
}
|
|
ul {
|
|
padding-left: 45px;
|
|
}
|
|
li {
|
|
padding-bottom: .5em;
|
|
}
|
|
p {
|
|
padding-bottom: .5em;
|
|
} |