Skip to content

Instantly share code, notes, and snippets.

@ethancoder151
Last active August 29, 2015 14:06
Show Gist options
  • Save ethancoder151/4742b246b605a56f2cf9 to your computer and use it in GitHub Desktop.
Save ethancoder151/4742b246b605a56f2cf9 to your computer and use it in GitHub Desktop.
designer
<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;
}
body {
font-family: sans-serif;
background-color: rgb(238, 238, 238);
}
core-toolbar {
background-color: rgb(3, 169, 244);
}
#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;
}
#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;
background-color: rgb(255, 255, 255);
}
#paper_fab1 {
left: 110px;
}
#core_icon_button {
left: 1090px;
top: 460px;
}
</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>
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs1">
<paper-tab id="paper_tab2" active>Kaxa Page</paper-tab>
</paper-tabs>
</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