Last active
August 29, 2015 14:16
-
-
Save DanaEpp/d3e650545e7f1d9778ff 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="../core-header-panel/core-header-panel.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> | |
#core_header_panel { | |
width: 100%; | |
height: 100%; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
background-color: rgb(249, 249, 249); | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(86, 119, 252); | |
} | |
#paper_tabs { | |
color: rgb(51, 51, 51); | |
background-color: rgb(249, 249, 249); | |
} | |
#content { | |
color: rgb(51, 51, 51); | |
background-color: rgb(249, 249, 249); | |
} | |
#core_card { | |
position: relative; | |
width: 300px; | |
height: 300px; | |
border-radius: 2px; | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
left: 440px; | |
top: 220px; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="navmenu"></core-icon-button> | |
<div id="div">Kaseya Axis</div> | |
<span flex></span> | |
<core-icon-button icon="apps" id="apps"></core-icon-button> | |
<core-icon-button icon="search" id="search"></core-icon-button> | |
<core-icon-button icon="more-vert" id="moremenu"></core-icon-button> | |
</core-toolbar> | |
<paper-tabs selected="0" selectedindex="0" id="paper_tabs" horizontal center layout> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>IAM Cloud</paper-tab> | |
<paper-tab id="paper_tab1" inline flex center-center horizontal layout>IT Management Cloud</paper-tab> | |
<paper-tab id="paper_tab2" inline flex center-center horizontal layout>VSA Pro</paper-tab> | |
<paper-tab id="paper_tab3" inline flex center-center horizontal layout>Work Apps</paper-tab> | |
<paper-tab id="paper_tab4" inline flex center-center horizontal layout>Personal Apps</paper-tab> | |
</paper-tabs> | |
<div id="div1" class="content"></div> | |
<core-card id="core_card" layout vertical center-justified center></core-card> | |
</core-header-panel> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment