Last active
August 29, 2015 14:07
-
-
Save brianrobles204/98ac5aa7bd580d10dd6f 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 href="../core-icon-button/core-icon-button.html" rel="import"> | |
<link href="../core-toolbar/core-toolbar.html" rel="import"> | |
<link href="../core-icons/core-icons.html" rel="import"> | |
<link href="../paper-icon-button/paper-icon-button.html" rel="import"> | |
<link href="../cool-clock/cool-clock.html" rel="import"> | |
<link href="../core-icons/av-icons.html" rel="import"> | |
<link href="../paper-fab/paper-fab.html" rel="import"> | |
<link href="../paper-button/paper-button.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
top: 0px; | |
left: 0px; | |
} | |
#core_toolbar { | |
right: 0px; | |
left: 0px; | |
background-color: rgb(79, 125, 201); | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 0px; | |
position: absolute; | |
} | |
#core_card { | |
position: absolute; | |
width: 300px; | |
height: 300px; | |
background-color: rgb(255, 255, 255); | |
border-radius: 2px; | |
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.098), 0px 0px 3px rgba(0, 0, 0, 0.098); | |
left: 30px; | |
top: 90px; | |
} | |
#paper_icon_button { | |
left: 998px; | |
top: 10px; | |
position: absolute; | |
} | |
</style> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div" flex>Polymer Test</div> | |
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
</core-toolbar> | |
<cool-clock id="cool_clock"></cool-clock> | |
<section id="section" vertical layout> | |
<div id="div1" hero-id="bottom" hero class="bottom"> | |
<span id="span">General Knowledge</span> | |
</div> | |
<div id="div2" class="dummy" hero></div> | |
<div id="div3" class="fab fab-0"> | |
<paper-fab id="paper_fab" icon="av:play-arrow" cross-fade-delayed></paper-fab> | |
</div> | |
<paper-button label="Paper Button" id="paper_button"></paper-button> | |
</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