Skip to content

Instantly share code, notes, and snippets.

@eudes
Created June 16, 2015 23:29
Show Gist options
  • Save eudes/3dfb2c05baf1681b99d1 to your computer and use it in GitHub Desktop.
Save eudes/3dfb2c05baf1681b99d1 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../core-icons/av-icons.html">
<link rel="import" href="../paper-fab/paper-fab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_icon_button {
left: 1030px;
top: 410px;
}
#ace_element {
width: 400px;
height: 300px;
left: 1030px;
top: 390px;
}
#div {
left: -410px;
top: -120px;
position: absolute;
}
#core_card {
position: absolute;
width: 470px;
height: 60px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 410px;
top: 140px;
background-color: rgb(255, 255, 255);
}
#paper_fab {
left: 20px;
top: 0px;
position: absolute;
}
</style>
<div id="div" layout horizontal>
<core-card id="core_card" layout vertical></core-card>
<paper-fab icon="check" id="paper_fab"></paper-fab>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment