Last active
August 29, 2015 14:17
-
-
Save edwardstudy/af79bb1f257a274a6d66 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-calculator/paper-calculator.html"> | |
<link rel="import" href="../paper-ripple/paper-ripple.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-button/paper-button.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#paper_icon_button { | |
left: 560px; | |
top: 230px; | |
position: absolute; | |
} | |
#paper_calculator { | |
width: 400px; | |
height: 560px; | |
left: 150px; | |
top: 110px; | |
position: absolute; | |
} | |
#paper_ripple { | |
width: 300px; | |
height: 300px; | |
left: 960px; | |
top: 290px; | |
position: absolute; | |
} | |
#paper_button { | |
left: 810px; | |
top: 420px; | |
position: absolute; | |
} | |
#section { | |
box-sizing: border-box; | |
width: 420px; | |
height: 582px; | |
left: 600px; | |
top: 100px; | |
position: absolute; | |
} | |
#section1 { | |
background-color: rgb(255, 255, 141); | |
} | |
#core_icon { | |
height: 256px; | |
width: 256px; | |
z-index: 100; | |
} | |
#div { | |
box-sizing: border-box; | |
position: relative; | |
height: 80px; | |
padding: 24px; | |
color: rgb(255, 255, 255); | |
font-size: 32px; | |
background-color: rgb(255, 235, 59); | |
} | |
#div2 { | |
position: absolute; | |
color: rgb(255, 255, 255); | |
bottom: 50px; | |
right: 24px; | |
} | |
#paper_fab { | |
background-color: rgb(255, 64, 129); | |
} | |
#section2 { | |
box-sizing: border-box; | |
width: 420px; | |
height: 630px; | |
left: 1060px; | |
top: 80px; | |
position: absolute; | |
} | |
#div3 { | |
box-sizing: border-box; | |
position: relative; | |
height: 240px; | |
padding: 24px; | |
color: rgb(255, 255, 255); | |
font-size: 32px; | |
background-color: rgb(255, 235, 59); | |
} | |
#section3 { | |
padding: 24px; | |
font-size: 16px; | |
background-color: rgb(238, 238, 238); | |
} | |
</style> | |
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator> | |
<paper-ripple id="paper_ripple"></paper-ripple> | |
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
<paper-button id="paper_button">button</paper-button> | |
<section id="section" layout vertical> | |
<div id="div" class="bottom" hero hero-id="bottom"> | |
<span id="span">General Knowledge</span> | |
</div> | |
<div id="div1" hero class="dummy"></div> | |
<div id="div2" class="fab fab-0"> | |
<paper-fab icon="av:play-arrow" id="paper_fab" cross-fade-delayed></paper-fab> | |
</div> | |
<section id="section1" class="top" flex layout horizontal center center-justified hero hero-id="top"> | |
<core-icon icon="category-images:knowledge" id="core_icon" cross-fade-delayed designmeta="topeka-image"></core-icon> | |
</section> | |
</section> | |
<section id="section2" layout vertical> | |
<div id="div3" hero> | |
<span id="span1">Question</span> | |
</div> | |
<section id="section3" hero flex> | |
<span id="span2">Answer here</span> | |
</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