In Wordpress, my main style.css file imports various sub-files, such as content.css, archive.css, product.css and so on:
@import url("content.css");
@import url("archive.css");
@import url("product.css");
Without success have I have been looking for a way - through browser console or online resource - to download "in a shot" a single CSS containing style.css plus all related @import files, without having to copy and paste all of them in a new file.
Do you know if there is a solution for this? Thank you.