Skip to content

Instantly share code, notes, and snippets.

@rpbarbati
Last active August 29, 2015 14:18
Show Gist options
  • Save rpbarbati/1a41c562bf318722e31f to your computer and use it in GitHub Desktop.
Save rpbarbati/1a41c562bf318722e31f 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: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#core_scaffold {
position: absolute;
top: 320px;
right: 0px;
bottom: 0px;
left: 2600px;
}
#section2 {
left: 2260px;
top: 890px;
}
#section {
left: 10px;
top: 40px;
position: absolute;
display: block;
background-color: rgb(0, 128, 0);
}
#core_icon_button {
left: 2330px;
top: 560px;
}
</style>
<section id="section"></section>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment