grunt-cache-bust-alt
Version:
An alternative version of Bust static assets from the cache using content hashing
33 lines (27 loc) • 682 B
CSS
body {
background-color: red;
}
.body:after {
content: url('assets/image2.jpg');
}
.image {
width: auto;
max-height: 120px;
background: #FFFFFF url('assets/css-image.jpg') center center no-repeat;
}
.image-quotes {
width: auto;
max-height: 120px;
background: #FFFFFF url("assets/css-image-quotes.jpg") center center no-repeat;
}
.large-image {
width: 100%;
background-image: url(assets/css-image-large.jpg);
background-position: top center;
background-size: contain;
}
@media only screen and (min-device-pixel-ratio: 2) and (min-resolution: 2dppx) {
.large-image {
background-image: url('assets/image1.jpg');
}
}