Skip to content

Instantly share code, notes, and snippets.

@satish-zol
Created April 2, 2015 06:21
Show Gist options
  • Save satish-zol/d964eaf1aea72b452778 to your computer and use it in GitHub Desktop.
Save satish-zol/d964eaf1aea72b452778 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;
background-color: rgb(122, 9, 129);
}
#paper_item {
left: 360px;
top: 20px;
position: absolute;
}
#core_label {
opacity: 1;
background-color: rgb(111, 7, 82);
}
</style>
<core-label id="core_label" for=".foo" horizontal layout center-justified center three flex>
GIFTTT
</core-label>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment