blob: 56328225633dc13270d136d9e7ea253eb6ac54c2 (
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
30
31
32
33
34
|
nav {
position: static;
margin: 5% 0 0 0;
text-align: center;
height: 100%;
width: 100%;
}
nav div {
text-align: center;
margin: auto;
}
nav div .blog-icon {
margin: 0;
height: 150px;
width: 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 div.title, div.author {
height: 0;
width: 0;
visibility: hidden;
pointer-events: none;
}
article {
position: static;
width: 80%;
margin: 2% 10% 10% 10%;
}
|