Last active
August 29, 2015 14:11
-
-
Save cpfarher/6007b34c6a0d1bba1042 to your computer and use it in GitHub Desktop.
designer
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 characters
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <link rel="import" href="../paper-ripple/paper-ripple.html"> | |
| <link rel="import" href="../paper-toast/paper-toast.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../core-icons/av-icons.html"> | |
| <link rel="import" href="../paper-fab/paper-fab.html"> | |
| <link rel="import" href="../core-menu-button/core-menu-button.html"> | |
| <link rel="import" href="../core-item/core-item.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="../paper-toggle-button/paper-toggle-button.html"> | |
| <link rel="import" href="../paper-slider/paper-slider.html"> | |
| <link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| #core_icon_button { | |
| left: 768px; | |
| top: 20px; | |
| position: absolute; | |
| } | |
| #core_menu_button { | |
| left: 440px; | |
| top: 120px; | |
| position: absolute; | |
| } | |
| #section { | |
| left: 790px; | |
| top: 340px; | |
| position: absolute; | |
| } | |
| #section1 { | |
| left: 600px; | |
| top: 200px; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| right: 0px; | |
| left: -10px; | |
| color: rgb(255, 255, 255); | |
| fill: rgb(255, 255, 255); | |
| top: 30px; | |
| position: absolute; | |
| background-color: rgb(79, 125, 201); | |
| } | |
| #paper_button { | |
| opacity: 0.6; | |
| background-color: rgb(255, 0, 0); | |
| } | |
| #paper_button1 { | |
| left: 270px; | |
| top: 200px; | |
| position: absolute; | |
| background-color: rgb(255, 0, 0); | |
| } | |
| #paper_fab { | |
| left: 170px; | |
| top: 120px; | |
| position: absolute; | |
| } | |
| #div1 { | |
| left: 170px; | |
| top: 190px; | |
| position: absolute; | |
| } | |
| #paper_icon_button { | |
| left: 748px; | |
| top: 20px; | |
| position: absolute; | |
| } | |
| #paper_input { | |
| left: 240px; | |
| top: 120px; | |
| position: absolute; | |
| } | |
| #paper_ripple { | |
| width: 300px; | |
| height: 300px; | |
| left: 100px; | |
| top: 260px; | |
| position: absolute; | |
| } | |
| #paper_slider { | |
| left: 228px; | |
| top: 20px; | |
| position: absolute; | |
| } | |
| #paper_toast { | |
| left: 620px; | |
| top: 180px; | |
| position: absolute; | |
| } | |
| #paper_toggle_button { | |
| left: 418px; | |
| top: 30px; | |
| position: absolute; | |
| opacity: 1; | |
| } | |
| </style> | |
| <section id="section"></section> | |
| <section id="section1"></section> | |
| <paper-button id="paper_button" horizontal layout start center-justified wrap-reverse two flex>button</paper-button> | |
| <paper-ripple id="paper_ripple"></paper-ripple> | |
| <paper-toast text="Toast!" id="paper_toast" class="core-transition-bottom core-transition" touch-action="none"></paper-toast> | |
| <paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
| <div id="div1" layout horizontal> | |
| <paper-fab icon="check" id="paper_fab1"></paper-fab> | |
| </div> | |
| <core-menu-button id="core_menu_button" icon="more-vert" selected="0" relative> | |
| <core-item id="core_item" icon="content-cut" label="Cut" horizontal center layout></core-item> | |
| <core-item id="core_item1" icon="content-copy" label="Copy" horizontal center layout></core-item> | |
| <core-item id="core_item2" icon="content-paste" label="Paste" horizontal center layout></core-item> | |
| </core-menu-button> | |
| <core-toolbar id="core_toolbar"> | |
| <core-icon-button icon="menu" id="core_icon_button1"></core-icon-button> | |
| <div id="div" flex>Toolbar</div> | |
| <paper-toggle-button id="paper_toggle_button"></paper-toggle-button> | |
| <paper-slider value="60" id="paper_slider"></paper-slider> | |
| <core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button> | |
| <paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
| </core-toolbar> | |
| <paper-input label="Type something..." value="ddfasdf" committedvalue="ddfasdf" id="paper_input"></paper-input> | |
| <paper-button id="paper_button1">button</paper-button> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment