[eluser]CroNiX[/eluser]
You can't directly access anything in the /system or /application folder via the URL. They are protected. So putting your css file in the views dir won't be directly accessible from the URL, which means you can't use them for assets.
Code:
-/web root
--/system
--/application
--/css
----mystyles.css
--/js
----myjs.js
--/images
----myimage.jpg
--/index.php
Code:
<style type='text/css' media='all'>@import url('/css/mystyles.css');</style>
<skript type="text/javascript" src="/js/myjs.js"></skript>
<img alt="" src="/images/myimage.jpg" />