39 lines
550 B
CSS
39 lines
550 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
html {
|
|
background-color: #222;
|
|
}
|
|
body {
|
|
margin: 20px;
|
|
}
|
|
body, h1, h2, h3 {
|
|
color: #fff;
|
|
}
|
|
|
|
header, main, footer {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#bookmark {
|
|
background-color: #333;
|
|
}
|
|
.zfont {
|
|
font-size: 0;
|
|
}
|
|
|
|
#img {
|
|
z-index: -1;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: .5;
|
|
background-image: url(../img/lorem.png);
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
background-position: top right;
|
|
}
|