52 lines
690 B
CSS
52 lines
690 B
CSS
html {
|
|
font-size: 62.5%;
|
|
background: #FFF;
|
|
}
|
|
|
|
/* reset */
|
|
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, p, th, td, article, section, figure, img {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-size: 1.5rem;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
header[role="banner"] {
|
|
background: url("../images/background.jpg") 0 0 no-repeat;
|
|
width: 100%;
|
|
height: 100px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:active {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
nav[role="navigation"] ul {
|
|
float: right;
|
|
text-align: right;
|
|
margin: 0;
|
|
margin-top:65px;
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
nav[role="navigation"] li {
|
|
display: inline;
|
|
}
|