I would like to create a responsive website with the Polymer Starter Kit + the prebuilt polymer elements.
Now, how to achieve something like a container or grid like in a css framework like bootstrap?
Is it possible with only Polymer, or my only options are my own custom code, or a framework/grid system like skeleton, bourbon neat, etc?
I tried to look at iron-flex-layout but it does not collapse on top of each other like a grid on smaller screen sizes, you can see it here:
http://plnkr.co/edit/ds6gAyohtZW4ESkxu83o?p=preview
<div class="horizontal layout" style="height:100%">
<div class="flex-1">
Left column
</div>
<div class="flex-4">
Right column
</div>
</div>
It does not "collapse" so the boxes will be under each other if you resize the window, it just scales.
So, how should I approach it?
EDIT: I would like to achieve something like this: http://www.bootply.com/4CJ9GOYEuH
So if you resize the window the dics will collapse onto the top of each other, instead of staying next to each other.
iron-flex-layout
? – Smoot