Skip to content

Instantly share code, notes, and snippets.

@TylerLH
Last active August 29, 2015 14:10
Show Gist options
  • Save TylerLH/db22c066053202b64d07 to your computer and use it in GitHub Desktop.
Save TylerLH/db22c066053202b64d07 to your computer and use it in GitHub Desktop.

Revisions

  1. TylerLH revised this gist Nov 23, 2014. 1 changed file with 5 additions and 10 deletions.
    15 changes: 5 additions & 10 deletions designer.html
    Original file line number Diff line number Diff line change
    @@ -13,10 +13,10 @@
    box-sizing: border-box;
    }
    #core_header_panel {
    width: 300px;
    height: 400px;
    left: 240px;
    top: 150px;
    width: 490px;
    height: 480px;
    left: 160px;
    top: 30px;
    position: absolute;
    }
    #core_toolbar {
    @@ -28,16 +28,11 @@
    background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
    }
    #core_card {
    position: absolute;
    width: 290px;
    height: 80px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
    left: 0px;
    top: 26px;
    background-color: rgb(255, 255, 255);
    }
    </style>
    @@ -47,7 +42,7 @@
    <div id="div">Header</div>
    </core-toolbar>
    <section id="section">
    <core-card id="core_card" layout vertical center-justified center></core-card>
    <core-card id="core_card" center-justified center></core-card>
    </section>
    </core-header-panel>
    </template>
  2. TylerLH revised this gist Nov 23, 2014. No changes.
  3. TylerLH revised this gist Nov 23, 2014. 1 changed file with 40 additions and 1 deletion.
    41 changes: 40 additions & 1 deletion designer.html
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,6 @@
    <link rel="import" href="../polymer/polymer.html">
    <link rel="import" href="../core-icon-button/core-icon-button.html">
    <link rel="import" href="../core-toolbar/core-toolbar.html">
    <link rel="import" href="../core-header-panel/core-header-panel.html">

    <polymer-element name="my-element">

    @@ -10,7 +12,44 @@
    height: 100%;
    box-sizing: border-box;
    }
    #core_header_panel {
    width: 300px;
    height: 400px;
    left: 240px;
    top: 150px;
    position: absolute;
    }
    #core_toolbar {
    color: rgb(255, 255, 255);
    background-color: rgb(79, 125, 201);
    }
    #section {
    height: 1000px;
    background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230));
    }
    #core_card {
    position: absolute;
    width: 290px;
    height: 80px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
    left: 0px;
    top: 26px;
    background-color: rgb(255, 255, 255);
    }
    </style>
    <core-header-panel mode="standard" id="core_header_panel">
    <core-toolbar id="core_toolbar">
    <core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
    <div id="div">Header</div>
    </core-toolbar>
    <section id="section">
    <core-card id="core_card" layout vertical center-justified center></core-card>
    </section>
    </core-header-panel>
    </template>

    <script>
  4. TylerLH created this gist Nov 23, 2014.
    24 changes: 24 additions & 0 deletions designer.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    <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;
    }
    </style>
    </template>

    <script>

    Polymer({

    });

    </script>

    </polymer-element>