Skip to content

Instantly share code, notes, and snippets.

@jc1987
Created July 30, 2014 09:30
Show Gist options
  • Save jc1987/50962f542dc87436959d to your computer and use it in GitHub Desktop.
Save jc1987/50962f542dc87436959d to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 260px;
top: 10px;
position: absolute;
background-color: rgb(238, 238, 238);
}
#core_card {
position: absolute;
width: 300px;
height: 300px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 820px;
top: 230px;
background-color: rgb(255, 255, 255);
}
#core_icon_button {
left: 830px;
top: 240px;
position: absolute;
}
</style>
<core-animated-pages selectedindex="0" notap id="core_animated_pages">
<section id="section" layout horizontal center center-justified active>
</section>
<section id="section1">
</section>
<section id="section2">
</section>
</core-animated-pages>
<core-card id="core_card" layout vertical>dqsdqsdqs</core-card>
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button>
</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