30 lines
476 B
CSS
30 lines
476 B
CSS
body {
|
|
background-color:white;
|
|
padding-top:2em;
|
|
font-size:large;
|
|
}
|
|
|
|
h1 { font-size: 5rem; }
|
|
h2 { font-size: 4rem; }
|
|
h3 { font-size: 3rem; }
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight:bold;
|
|
white-space:nowrap;
|
|
text-shadow: 1px 1px 2px white;
|
|
}
|
|
|
|
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
|
|
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
|
|
text-decoration:none;
|
|
color:inherit;
|
|
}
|
|
|
|
.tight p {
|
|
margin:0;
|
|
}
|
|
|
|
li {
|
|
margin-bottom:0;
|
|
}
|