I need to share styles across multiple Polymer elements. Is it acceptable to create a \"styles.html\" file and then import that into my different elements or would this star
You can use Polymer's shared styles. Create a document with your styles:
And then import this to your elements and in their definitions add include="shared-styles" to the tag.
include="shared-styles"