Last active
August 29, 2015 14:11
-
-
Save aliwaseem/1642862fd93cf41fab3e 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-pages/core-pages.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"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../core-input/core-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_pages { | |
width: 100%; | |
height: 100%; | |
border: 1px solid silver; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_header_panel { | |
width: 100%; | |
height: 100%; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#div { | |
width: 100%; | |
} | |
#section2 { | |
height: 1000px; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
#paper_button1 { | |
width: 90%; | |
left: 42px; | |
top: 85px; | |
position: absolute; | |
padding: 1%; | |
font-size: 1em; | |
color: rgb(255, 255, 255); | |
background: rgb(56, 254, 234); | |
} | |
#input { | |
padding: 15px; | |
left: -1px; | |
top: -65px; | |
position: absolute; | |
} | |
</style> | |
<core-pages selected="0" selectedindex="0" notap id="core_pages"> | |
<section id="section" active> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="{{ $.paper_button1.sadas }}" id="core_icon_button"></core-icon-button> | |
<div id="div" center horizontal layout center-justified>OPENMAT CRACKER</div> | |
</core-toolbar> | |
<section id="section2"> | |
<paper-button id="paper_button1" center-justified horizontal layout center>General Awareness</paper-button> | |
<input id="input" placeholder="type something..." is="core-input"> | |
</section> | |
</core-header-panel> | |
</section> | |
<section id="section1">Page Two</section> | |
</core-pages> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment