blob: 86d78443d7ecfd5e9e0b940842cc74c310e8ff14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
body {
margin: 40px 0 100px 0;
}
.nav {
position: static;
width: 100%;
height: 150px;
margin: 20px 0;
}
.nav-icon {
width: 150px;
height: 150px;
background-image: url("/img/icon-150.png");
background-image: -webkit-image-set( url("/img/icon-150.png") 1x, url("/img/icon-300.png") 2x );
background-size: 150px;
}
.nav-title, .nav-author {
height: 0;
width: 0;
visibility: hidden;
pointer-events: none;
}
.content, .content-separator, .footer {
width: 80%;
}
|