Last active
August 29, 2015 14:06
-
-
Save ethancoder151/f82d6cac3a6e19e43e5d 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-animated-pages/core-animated-pages.html"> | |
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.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-icons/core-icons.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.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; | |
color: rgb(255, 255, 255); | |
} | |
#core_animated_pages { | |
width: 100%; | |
height: 100%; | |
overflow: hidden; | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 430px; | |
right: 0px; | |
bottom: 0px; | |
left: 1180px; | |
} | |
#paper_tabs { | |
width: 480px; | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
left: 1090px; | |
top: 530px; | |
background-color: rgb(0, 188, 212); | |
} | |
#core_toolbar { | |
background-color: rgb(90, 49, 215); | |
} | |
</style> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<core-toolbar id="core_toolbar" class="medium-tall" active> | |
<paper-icon-button icon="menu" id="navicon"></paper-icon-button> | |
<span id="span" flex>Lean Tutor</span> | |
<paper-icon-button icon="more-vert" id="morebutton"></paper-icon-button> | |
<paper-tabs selected="1" selectedindex="1" class="bottom fit"> | |
<paper-tab id="paper_tab">Login</paper-tab> | |
<paper-tab id="paper_tab1" active>Registration</paper-tab> | |
<paper-tabs> | |
</paper-tabs> | |
</paper-tabs> | |
</core-toolbar> | |
</core-animated-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