Skip to content

Instantly share code, notes, and snippets.

@vkilmore
Last active January 3, 2016 21:51
Show Gist options
  • Save vkilmore/a6bd2b5a25fa8bacc878 to your computer and use it in GitHub Desktop.
Save vkilmore/a6bd2b5a25fa8bacc878 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(255, 255, 255);
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 1600px;
top: 690px;
}
#paper_icon_button {
left: 1520px;
top: 10px;
}
</style>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment