Last active
August 29, 2015 14:07
-
-
Save nkolban/a2083c107072eba07f86 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="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-button/paper-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; | |
} | |
#paper_input { | |
left: 400px; | |
top: 540px; | |
position: absolute; | |
} | |
#section { | |
left: 420px; | |
top: 400px; | |
position: absolute; | |
} | |
#core_toolbar { | |
right: 0px; | |
left: 30px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 270px; | |
position: absolute; | |
background-color: rgb(79, 125, 201); | |
} | |
#core_field { | |
left: 510px; | |
top: 660px; | |
position: absolute; | |
} | |
#core_icon_button1 { | |
left: 850px; | |
top: 760px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 260px; | |
top: 440px; | |
position: absolute; | |
} | |
#paper_button1 { | |
left: 400px; | |
top: 440px; | |
position: absolute; | |
} | |
#paper_button2 { | |
left: 260px; | |
top: 500px; | |
position: absolute; | |
} | |
#paper_input1 { | |
left: 400px; | |
top: 500px; | |
position: absolute; | |
} | |
</style> | |
<section id="section"></section> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div" flex>Toolbar</div> | |
</core-toolbar> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input willvalidate placeholder="text input" id="core_input" flex></core-input> | |
</core-field> | |
<core-icon-button icon="menu" id="core_icon_button1" theme="core-light-theme"></core-icon-button> | |
<paper-button label="Paper Button" raised id="paper_button"></paper-button> | |
<paper-button label="Paper Button" raised id="paper_button1"></paper-button> | |
<paper-button label="Paper Button" raised id="paper_button2"></paper-button> | |
<paper-input label="Type something..." willvalidate id="paper_input1" layout vertical></paper-input> | |
<paper-input label="Enter Name" willvalidate id="paper_input" layout vertical></paper-input> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment