Skip to content

Instantly share code, notes, and snippets.

@amrud
Created August 19, 2014 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrud/3677b483868fa8fed945 to your computer and use it in GitHub Desktop.
Save amrud/3677b483868fa8fed945 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-ripple/paper-ripple.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_field {
left: 1620px;
top: 580px;
}
#core_header_panel {
width: 300px;
height: 400px;
left: 1740px;
top: 560px;
}
#core_item {
left: 1640px;
top: 580px;
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
left: 1700px;
top: 470px;
}
#paper_ripple {
width: 670px;
height: 750px;
left: 50px;
top: 60px;
position: absolute;
}
#paper_ripple1 {
width: 750px;
height: 750px;
left: 730px;
top: 60px;
position: absolute;
}
</style>
<paper-ripple id="paper_ripple">dsdfsf</paper-ripple>
<paper-ripple id="paper_ripple1"></paper-ripple>
</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