64 lines
700 B
CSS
64 lines
700 B
CSS
body {
|
|
margin-top: 10px;
|
|
margin-left: 60px;
|
|
width: 70%;
|
|
font-family: 'Helvetica', 'Arial', 'Sans-Serif';
|
|
background: black;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #999;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
p,
|
|
ul {
|
|
font-size: 1.5em;
|
|
line-height: 0.5em;
|
|
color: #fff;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
color: #ffad1a
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.7em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
nav ul,
|
|
footer ul {
|
|
padding: 0px;
|
|
list-style: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
nav ul li,
|
|
footer ul li {
|
|
display: inline;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px solid #d5d5d5;
|
|
font-size: .8em;
|
|
} |