grunt-cache-bust
Version:
Bust static assets from the cache using content hashing
29 lines (24 loc) • 674 B
CSS
body {
background-color: red;
}
.image {
width: auto;
max-height: 120px;
background: #FFFFFF url('../assets/relative-css-image.jpg') center center no-repeat;
}
.image-quotes {
width: auto;
max-height: 120px;
background: #FFFFFF url("../assets/relative-css-image-quotes.jpg") center center no-repeat;
}
.large-image {
width: 100%;
background-image: url(../assets/relative-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/relative-image1.jpg');
}
}