Last active
August 29, 2015 14:14
-
-
Save nbransby/d1de6c00d79e3004828f to your computer and use it in GitHub Desktop.
designer
This file contains 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="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#core_toolbar1 { | |
right: 0px; | |
left: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 0px; | |
position: absolute; | |
background-color: rgb(71, 169, 220); | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 0px; | |
top: 60px; | |
position: relative; | |
background-color: rgb(65, 168, 223); | |
} | |
</style> | |
<core-toolbar id="core_toolbar1"> | |
<core-icon-button icon="menu" id="core_icon_button1"></core-icon-button> | |
<div id="div1" flex>Laundrapp</div> | |
</core-toolbar> | |
<paper-tabs selected="4" selectedindex="4" id="paper_tabs"> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout>OFFERS</paper-tab> | |
<paper-tab id="paper_tab1" inline flex center-center horizontal layout>LAUNDRY</paper-tab> | |
<paper-tab id="paper_tab2" inline flex center-center horizontal layout>SHIRTS</paper-tab> | |
<paper-tab id="paper_tab3" inline flex center-center horizontal layout>TROUSERS</paper-tab> | |
<paper-tab id="paper_tab4" inline flex center-center horizontal layout active>BEDDING</paper-tab> | |
</paper-tabs> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment