52 lines
571 B
CSS
52 lines
571 B
CSS
@CHARSET "UTF-8";
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font: 12px/14px Arial, Helvetica, sans-serif;
|
|
color: #666;
|
|
text-align: left;
|
|
background: #404040;
|
|
}
|
|
|
|
a {
|
|
color: #08c;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a img {
|
|
border: none;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 20px 0;
|
|
line-height: 18px;
|
|
}
|
|
|
|
#box {
|
|
margin: 40px auto;
|
|
padding: 25px;
|
|
width: 400px;
|
|
background: #fff;
|
|
}
|
|
|
|
#box h2 {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
margin: 0 0 20px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.light {
|
|
color: #ccc;
|
|
text-transform: none;
|
|
}
|