41 lines
419 B
CSS
41 lines
419 B
CSS
@CHARSET "UTF-8";
|
|
|
|
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
img{
|
|
border: 0;
|
|
}
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
a:hover{
|
|
text-decoration: underline;
|
|
}
|
|
h1{
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
line-height: 2em;
|
|
}
|
|
h2{
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
line-height: 1.6em;
|
|
}
|
|
h3{
|
|
font-size: 12px;
|
|
font-weight: normal;
|
|
}
|
|
h4{
|
|
font-size: 10px;
|
|
font-weight: normal;
|
|
}
|
|
h5{
|
|
font-size: 9px;
|
|
font-weight: normal;
|
|
}
|
|
html{
|
|
height: 100%;
|
|
width: 100%;
|
|
} |