I have a css file and i want to import another css file inside it. How can I do this in Django ?
This is my style.css file and I want to import owl.carousel.css in 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;
}
I am using {% load static %} on my template to link style.css but how can import a css inside a css ?
<link href="{% static "assets/css/style.css" %}" rel="stylesheet">