Skip to content

Instantly share code, notes, and snippets.

@alandvgarcia
Last active August 29, 2015 14:23
Show Gist options
  • Save alandvgarcia/5b9b399572a02a20cf01 to your computer and use it in GitHub Desktop.
Save alandvgarcia/5b9b399572a02a20cf01 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-resources.html">
<link rel="import" href="../topeka-elements/topeka-profile.html">
<polymer-element name="my-element">
<template>
<style>
:host {
box-sizing: border-box;
background-color: rgb(44, 62, 80);
}
#section1 {
left: 340px;
top: 110px;
position: absolute;
background-color: rgb(255, 255, 141);
}
#topeka_profile {
width: 500px;
height: 530px;
left: 70px;
top: 10px;
position: absolute;
}
</style>
<section id="section1" class="top" flex layout horizontal center center-justified hero hero-id="top">
</section>
<topeka-profile id="topeka_profile" center layout vertical center-justified wrap></topeka-profile>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment