Created
November 19, 2014 15:46
-
-
Save 64BitAsura/0eccb7fbaf739fbc7663 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="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
width: 100%; | |
height: 100%; | |
border: 5px solid rgb(204, 204, 204); | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#paper_tabs { | |
color: rgb(255, 255, 255); | |
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
background-color: rgb(0, 188, 212); | |
} | |
#core_card { | |
border-radius: 2px; | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
height: 20%; | |
width: 97%; | |
position: absolute; | |
margin: 10px; | |
background-color: rgb(255, 255, 255); | |
} | |
#div { | |
left: 535px; | |
top: 547px; | |
position: absolute; | |
} | |
#paper_fab { | |
position: relative; | |
top: -10%; | |
left: 85%; | |
} | |
#core_toolbar { | |
right: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 88%; | |
position: absolute; | |
left: 0%; | |
background-color: rgb(255, 235, 59); | |
} | |
#paper_ripple { | |
width: 100%; | |
position: relative; | |
} | |
</style> | |
<section id="section" layout vertical> | |
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs" horizontal center layout> | |
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>ITEM ONE</paper-tab> | |
</paper-tabs> | |
<section id="section1" flex relative> | |
<div id="div" layout horizontal> | |
</div> | |
<core-card id="core_card" one flex wrap ripple class="paper-shadow-bottom-z-3" center-justified start vertical layout> | |
<div id="div1">Title of Tile</div> | |
<div> | |
<span id="span">Content of Tile</span> | |
</div> | |
<paper-fab icon="more" id="paper_fab"></paper-fab> | |
</core-card> | |
<core-toolbar id="core_toolbar" class="paper-shadow-bottom-z-2"> | |
</core-toolbar> | |
</section> | |
</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