Created
July 7, 2014 10:56
-
-
Save JayMc/3944be46af245fd54868 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-tabs/paper-tab.html"> | |
<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-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_pages { | |
width: 400px; | |
height: 400px; | |
border: 1px solid silver; | |
left: 120px; | |
top: 320px; | |
position: absolute; | |
} | |
#section { | |
left: 130px; | |
top: 230px; | |
position: absolute; | |
opacity: 0.9; | |
} | |
#paper_tab4 { | |
left: 580px; | |
top: 420px; | |
position: absolute; | |
} | |
#cool_clock1 { | |
width: 400px; | |
height: 300px; | |
left: 680px; | |
top: 600px; | |
} | |
#core_menu { | |
font-size: 16px; | |
left: 720px; | |
top: 470px; | |
} | |
#core_toolbar { | |
right: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 530px; | |
right: 0px; | |
bottom: 0px; | |
left: 740px; | |
} | |
#core_card { | |
width: 300px; | |
height: 300px; | |
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; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<paper-tab id="paper_tab4" vertical layout>ITEM FIVE</paper-tab> | |
<core-pages selected="0" selectedindex="0" notap id="core_pages"> | |
<section id="section1" active> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div" flex>Toolbar</div> | |
<core-item label="Item" icon="settings" id="core_item" horizontal center layout></core-item> | |
<core-item label="Item" icon="settings" id="core_item1" horizontal center layout></core-item> | |
</core-toolbar> | |
<core-card id="core_card" layout vertical></core-card> | |
</section> | |
</core-pages> | |
<section id="section" vertical layout> | |
</section> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment