Thanks for the response esmi!
So I guess just to clarify, WP absolutely needs to have a style.css file in the themes root directory? I was trying to avoid this but if thats just how it works then I guess I will use the @import method.
Now is this a WP thing or is it a twentyten theme thing?
As for additional linked files (images, js) Im trying to avoid typing /assets/js……
Is there no way to create a bloginfo(‘somevar’) and define it so that it goes directly to the assets/js folder so I could write:
<?php bloginfo('js_dir'); ?>/file.js
or for images
<?php bloginfo('img_dir'); ?>/file.png
From a functionality aspect is really no big deal but just thought it’d be nice to clean things up a bit.