72 lines
1001 B
CSS
72 lines
1001 B
CSS
html {
|
|
background: #000;
|
|
background-image: url("lainsign.png");
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
h1{
|
|
text-align: center;
|
|
}
|
|
|
|
footer{
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
color: #fff;
|
|
}
|
|
|
|
/*
|
|
* Formatting the header area
|
|
*/
|
|
|
|
header {
|
|
height: 35px;
|
|
width: 100%;
|
|
opacity: .9;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
header h1.logo {
|
|
margin: 0;
|
|
font-size: 1.7em;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
float: left;
|
|
}
|
|
|
|
/* header h1.logo:hover { */
|
|
/* color: #fff; */
|
|
/* text-decoration: none; */
|
|
/* } */
|
|
|
|
/*
|
|
* Center the body content
|
|
*/
|
|
|
|
.container {
|
|
width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 3em;
|
|
margin-top: 40px;
|
|
text-align: center;
|
|
letter-spacing: -2px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.7em;
|
|
font-weight: 100;
|
|
margin-top: 30px;
|
|
text-align: center;
|
|
letter-spacing: -1px;
|
|
color: #999;
|
|
}
|
|
|