Skip to content

Instantly share code, notes, and snippets.

@hugojosefson
Created February 5, 2015 17:07
Show Gist options
  • Save hugojosefson/a42c86306e3a62b004e5 to your computer and use it in GitHub Desktop.
Save hugojosefson/a42c86306e3a62b004e5 to your computer and use it in GitHub Desktop.

Revisions

  1. hugojosefson created this gist Feb 5, 2015.
    35 changes: 35 additions & 0 deletions designer.html
    Original 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>