Last active
August 29, 2015 14:07
-
-
Save ethancoder151/6dfdfd48089273a76bd3 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-icon-button/paper-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
core-toolbar { | |
background-color: rgb(3, 169, 244); | |
} | |
#core-toolbar2 { | |
height: 56px; | |
background-color: rgb(50, 186, 248); | |
} | |
#section { | |
left: -10px; | |
top: -50px; | |
position: absolute; | |
} | |
#section1 { | |
left: 40px; | |
top: 10px; | |
position: absolute; | |
} | |
#section2 { | |
left: 30px; | |
top: 140px; | |
position: absolute; | |
} | |
#section3 { | |
width: 100%; | |
height: 100%; | |
left: -10px; | |
top: 120px; | |
position: static; | |
} | |
#section4 { | |
width: 100%; | |
height: 100%; | |
left: -10px; | |
top: 120px; | |
position: static; | |
background-color: rgb(0, 0, 51); | |
} | |
#paper_tabs1 { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
#core_animated_pages { | |
width: 100%; | |
height: 500px; | |
overflow: hidden; | |
left: 0px; | |
position: static; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_card { | |
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; | |
padding: 50px; | |
width: 1020px; | |
height: 360px; | |
background-color: rgb(255, 255, 255); | |
} | |
#paper_fab { | |
left: 110px; | |
} | |
#core_card1 { | |
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; | |
padding: 50px; | |
background-color: rgb(255, 255, 255); | |
} | |
#div2 { | |
left: 100px; | |
} | |
#paper_fab1 { | |
left: 110px; | |
} | |
paper-dropdown-menu { | |
width: 320px; | |
} | |
</style> | |
<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> | |
</core-toolbar> | |
<section id="section2"> | |
<section id="section1"> | |
<section id="section" layout horizontal center center-justified> | |
</section> | |
</section> | |
</section> | |
<section id="section3" layout vertical> | |
<core-toolbar id="core-toolbar2" class="small-tall" active> | |
<paper-icon-button icon="arrow-back" id="navicon"></paper-icon-button> | |
<span id="span" flex>Filename:</span> | |
</core-toolbar> | |
<core-card id="core_card" vertical layout center justified></core-card> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment