-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.css
39 lines (39 loc) · 909 Bytes
/
blog.css
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
35
36
37
38
39
.usage .content {
padding: 1em;
text-align: center;
}
.usage .content article {
vertical-align: top;
max-width: 450px;
display: inline-block;
text-align: left;
margin: 1em;
}
.usage .content article img {
max-height: 200px;
margin: 0 0.5em 0 0;
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.15);
box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.usage .content time {
font-weight: normal;
font-size: 0.6em;
color: #aaa;
display: block;
}
.usage .content .sig {
text-align: right;
height: 10.5em;
display: block;
background: url("img/log.png") -23px -3px no-repeat;
}
@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
.usage .content .sig {
background-image: url("img/log.svg");
}
}
@media (max-width: 500px) {
.usage .content .sig {
display: none !important;
}
}