Last active
August 29, 2015 14:07
-
-
Save ViliamKopecky/1fb8f32ee562cd420c86 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 href="../paper-calculator/paper-calculator.html" rel="import"> | |
<link href="../topeka-elements/theme.html" rel="import"> | |
<link href="../topeka-elements/topeka-resources.html" rel="import"> | |
<link href="../topeka-elements/topeka-app.html" rel="import"> | |
<link href="../topeka-elements/avatars.html" rel="import"> | |
<link href="../core-icon/core-icon.html" rel="import"> | |
<link href="../topeka-elements/topeka-datasource.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#topeka_app { | |
width: 300px; | |
height: 300px; | |
min-height: 450px; | |
left: 20px; | |
top: 10px; | |
position: absolute; | |
} | |
#core_icon { | |
height: 64px; | |
width: 64px; | |
left: 760px; | |
top: 120px; | |
position: absolute; | |
} | |
#core_icon1 { | |
height: 64px; | |
width: 64px; | |
left: 910px; | |
top: 230px; | |
position: absolute; | |
} | |
#core_selector { | |
left: 500px; | |
top: 270px; | |
position: absolute; | |
} | |
#core_icon2 { | |
height: 64px; | |
width: 64px; | |
border-radius: 50%; | |
overflow: hidden; | |
} | |
#core_icon3 { | |
height: 64px; | |
width: 64px; | |
margin: 0px 8px; | |
border-radius: 50%; | |
overflow: hidden; | |
} | |
#core_icon4 { | |
height: 64px; | |
width: 64px; | |
border-radius: 50%; | |
overflow: hidden; | |
} | |
#topeka_datasource { | |
left: 840px; | |
top: 380px; | |
position: absolute; | |
} | |
</style> | |
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator> | |
<topeka-app selected="profile" disableleaderboard id="topeka_app" categories="[]" layout vertical></topeka-app> | |
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon> | |
<core-icon icon="avatars:avatar-1" id="core_icon1" designmeta="topeka-avatar"></core-icon> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element><core-selector selected="0" selectedindex="0" id="core_selector" horizontal layout flex> | |
<core-icon icon="avatars:avatar-1" id="core_icon2" designmeta="topeka-avatar" active></core-icon> | |
<core-icon icon="avatars:avatar-2" id="core_icon3" designmeta="topeka-avatar"></core-icon> | |
<core-icon icon="avatars:avatar-3" id="core_icon4" designmeta="topeka-avatar"></core-icon> | |
</core-selector> | |
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource> | |
<core-icon icon="avatars:avatar-1" id="core_icon1" designmeta="topeka-avatar"></core-icon> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment