Created
February 5, 2015 17:07
-
-
Save hugojosefson/a42c86306e3a62b004e5 to your computer and use it in GitHub Desktop.
Revisions
-
hugojosefson created this gist
Feb 5, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ <link rel="import" href="../polymer/polymer.html"> <polymer-element name="my-element"> <template> <style> :host { position: absolute; width: 100%; height: 100%; box-sizing: border-box; } #core_card { position: absolute; width: 300px; height: 300px; border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; left: 330px; top: 40px; background-color: rgb(255, 255, 255); } </style> <core-card id="core_card" layout vertical>asdasd</core-card> </template> <script> Polymer({ }); </script> </polymer-element>