I would like to distribute my css between multiple files to remain more organized. But I want to only have to import my main.css stylesheet which would in turn import the rest. Here is my current setup, but none of the rules from my other files take any effect. How should I change my rules to make this work correctly?
File layout:
/
├── css
│ ├── main.css
│ ├── nav.css
│ └── width.css
├── index.html
Code in main.css:
@import url('nav.css');
@import url('width.css');