I haven't look too closely, but I'm pretty sure you have an issue with how your manifest file is compiled. Right now you just import everything using require tree ., which will build the application stylesheet alphabetically:
base
layout
main
skeleton
Well, this is almost okay, but could break very easily. I would explicitly import each one so that you have your reset first, then your vendors/libraries/prebuilt, then your own stylings, so that the app will cascade to your styles and will allow you to override any styling you've uploaded as a foundation.
Also, layout.css is just some notes, which I think you could delete.
I haven't look too closely, but I'm pretty sure you have an issue with how your manifest file is compiled. Right now you just import everything using
require tree .
, which will build the application stylesheet alphabetically:Well, this is almost okay, but could break very easily. I would explicitly import each one so that you have your reset first, then your vendors/libraries/prebuilt, then your own stylings, so that the app will cascade to your styles and will allow you to override any styling you've uploaded as a foundation.
Also, layout.css is just some notes, which I think you could delete.