Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <link rel="import" href="../polymer/polymer.html">
  2.  
  3. <polymer-element name="5up">
  4.  
  5. <template>
  6. <style>
  7. :host {
  8. position: absolute;
  9. top: 0px;
  10. left: 0px;
  11. width: 100%;
  12. height: 100%;
  13. }
  14. div.pog {
  15. border: 1px solid rgb(204, 204, 204);
  16. padding: 10px;
  17. background-color: rgb(255, 255, 255);
  18. }
  19. div.row {
  20. display: block;
  21. height: 300px;
  22. width: 600px;
  23. }
  24. </style>
  25. <div id="photogrid" layout vertical center>
  26. <div id="row1" class="row" layout horizontal>
  27. <div id="photo_1" class="pog" flex></div>
  28. <div id="photo_2" class="pog" flex></div>
  29. <div id="photo_3" class="pog" flex></div>
  30. </div>
  31. <div id="row2" class="row" layout horizontal>
  32. <div id="photo_4" class="pog" flex></div>
  33. <div id="photo_5" class="pog" flex>
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38.  
  39. <script>
  40.  
  41. Polymer({
  42.  
  43. });
  44.  
  45. </script>
  46.  
  47. </polymer-element>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement