UNPKG

grunt-concat-css

Version:

Concat CSS with @import statements at top and relative url preserved.

12 lines (11 loc) 449 B
/* * Samples taken from MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/@import; */ @import url("fineprint.css") print; @import url("bluish.css") projection, tv; @import 'custom.css'; @import url("chrome://communicator/skin/"); @import "common.css" screen, projection; @import url('landscape.css') screen and (orientation:landscape); /* Other samples */ @import url('http://anotherwebsite.com/magic.css') screen and (orientation:landscape);