39 lines
488 B
CSS
39 lines
488 B
CSS
body {
|
|
font-family: "Arial";
|
|
color: #444;
|
|
}
|
|
|
|
h1, h2 {
|
|
color: #f60;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.2em;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
color: #f60;
|
|
border: 1px solid #fda;
|
|
background: #fff0e0;
|
|
border-radius: 3px; -moz-border-radius: 3px;
|
|
padding: 2px;
|
|
text-decoration: none;
|
|
/* font-weight: bold; */
|
|
}
|
|
|
|
ul.menu {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
ul.menu li {
|
|
padding: 5px 0;
|
|
}
|