Last active
August 29, 2015 14:15
-
-
Save umohi/d85a27972c8c0e1587d2 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-icons/core-icons.html"> | |
<link rel="import" href="../paper-item/paper-item.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_toolbar { | |
right: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#paper_icon_button { | |
left: 810px; | |
top: 500px; | |
} | |
#div11 { | |
left: 820px; | |
top: 460px; | |
} | |
#paper_button { | |
background-color: rgb(79, 143, 0); | |
} | |
#core_card { | |
position: absolute; | |
width: 350px; | |
height: 510px; | |
border-radius: 2px; | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
left: 340px; | |
top: 20px; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<core-card id="core_card" layout vertical> | |
<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> | |
<paper-item id="paper_item" icon="settings" label="Item">Jamb Past Questions</paper-item> | |
<paper-item id="paper_item1" icon="settings" label="Item">Select Year</paper-item> | |
<paper-input label="Type something..." id="paper_input"></paper-input> | |
<paper-item id="paper_item2" icon="settings" label="Item">Select Subject</paper-item> | |
<paper-input label="Type something..." id="paper_input1"></paper-input> | |
<paper-button raised id="paper_button">OK</paper-button> | |
</core-card> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment