Last active
August 29, 2015 14:07
-
-
Save o-ars/6252643b519a184436aa 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="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-pages/core-pages.html"> | |
<link rel="import" href="../paper-slider/paper-slider.html"> | |
<link rel="import" href="../paper-toggle-button/paper-toggle-button.html"> | |
<link rel="import" href="../topeka-elements/theme.html"> | |
<link rel="import" href="../topeka-elements/topeka-resources.html"> | |
<link rel="import" href="../topeka-elements/topeka-categories.html"> | |
<link rel="import" href="../topeka-elements/topeka-app.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#core_animated_pages { | |
width: 420px; | |
height: 582px; | |
overflow: hidden; | |
left: 220px; | |
top: 50px; | |
position: absolute; | |
background-color: rgb(238, 238, 238); | |
} | |
#core_field { | |
left: 900px; | |
top: 430px; | |
position: absolute; | |
} | |
#core_item { | |
left: 680px; | |
top: 380px; | |
position: absolute; | |
} | |
#core_menu { | |
font-size: 16px; | |
} | |
#core_pages { | |
width: 400px; | |
height: 400px; | |
border: 1px solid silver; | |
left: 760px; | |
top: 490px; | |
position: absolute; | |
} | |
#section5 { | |
left: 810px; | |
top: 170px; | |
position: absolute; | |
} | |
#section6 { | |
left: 880px; | |
top: 180px; | |
position: absolute; | |
} | |
#paper_slider { | |
left: 230px; | |
top: 740px; | |
position: absolute; | |
} | |
#paper_toggle_button { | |
left: 360px; | |
top: 680px; | |
position: absolute; | |
} | |
#topeka_categories { | |
width: 300px; | |
height: 300px; | |
left: 780px; | |
top: 30px; | |
position: absolute; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 80px; | |
top: 200px; | |
position: absolute; | |
} | |
</style> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<section id="section" layout horizontal center center-justified active> | |
<core-menu selected="0" selectedindex="0" id="core_menu"> | |
<core-submenu opened active id="core_submenu" icon="settings" label="Topics"> | |
<core-item id="core_item1" label="Topic 1" horizontal center layout></core-item> | |
<core-item id="core_item2" label="Topic 2" horizontal center layout></core-item> | |
</core-submenu> | |
<core-submenu id="core_submenu1" icon="settings" label="Favorites"> | |
<core-item id="core_item3" label="Favorite 1" horizontal center layout></core-item> | |
<core-item id="core_item4" label="Favorite 2" horizontal center layout></core-item> | |
<core-item id="core_item5" label="Favorite 3" horizontal center layout></core-item> | |
</core-submenu> | |
</core-menu> | |
</section> | |
<section id="section1"> | |
</section> | |
<section id="section2"> | |
</section> | |
</core-animated-pages> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input willvalidate placeholder="text input" id="core_input" flex></core-input> | |
</core-field> | |
<core-item id="core_item" icon="settings" label="Item" horizontal center layout></core-item> | |
<core-pages selected="0" selectedindex="0" notap id="core_pages"> | |
<section id="section3" active>Page One</section> | |
<section id="section4">Page Two</section> | |
</core-pages> | |
<section id="section5"></section> | |
<section id="section6"></section> | |
<paper-slider id="paper_slider"></paper-slider> | |
<paper-toggle-button id="paper_toggle_button"></paper-toggle-button> | |
<topeka-categories id="topeka_categories" vertical layout></topeka-categories> | |
<topeka-app selected="profile" disableleaderboard id="topeka_app" vertical layout></topeka-app> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment