Created
August 22, 2014 06:32
-
-
Save akissu/25571c8b22de8962f103 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-animated-pages/core-animated-pages.html"> | |
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
<link rel="import" href="../topeka-elements/category-images.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../topeka-elements/avatars.html"> | |
<link rel="import" href="../topeka-elements/category-icons.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_animated_pages { | |
width: 420px; | |
height: 582px; | |
overflow: hidden; | |
left: 370px; | |
top: 60px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#paper_item { | |
left: 1210px; | |
top: 610px; | |
} | |
#section3 { | |
width: 420px; | |
height: 630px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 1200px; | |
top: 540px; | |
} | |
#topeka_category { | |
width: 300px; | |
height: 300px; | |
left: 1180px; | |
top: 590px; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 1260px; | |
top: 610px; | |
} | |
#core_icon { | |
height: 256px; | |
width: 256px; | |
} | |
#core_icon1 { | |
height: 64px; | |
width: 64px; | |
} | |
#core_icon2 { | |
height: 128px; | |
width: 128px; | |
} | |
</style> | |
<core-animated-pages id="core_animated_pages" notap> | |
<section id="section" layout horizontal center center-justified active> | |
<core-icon id="core_icon" icon="category-images:food" designmeta="topeka-image"></core-icon> | |
<core-icon id="core_icon1" icon="avatars:avatar-1" designmeta="topeka-avatar"></core-icon> | |
<core-icon id="core_icon2" icon="category-icons:food" designmeta="topeka-icon"></core-icon> | |
</section> | |
<section id="section1"> | |
</section> | |
<section id="section2"> | |
</section> | |
</core-animated-pages> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment