Is it possible to import one CSS file into another in Django?
I have a style.css file and I need to include owl.carousel.css within it.
@import url("owl.carousel.css");
body {
margin: 0;
padding: 0;
color: #34495E;
font-family: 'Source Sans Pro', sans-serif;
font-size: 14px;
line-height: 21px;
position: relative;
background: #fff;
}
In my template, I use {% load static %} to link style.css. How can I achieve the same for importing a CSS file inside another CSS file?
<link href="{% static "assets/css/style.css" %}" rel="stylesheet">