Skip to content

Instantly share code, notes, and snippets.

@akki777-zz
Last active August 29, 2015 14:21
Show Gist options
  • Save akki777-zz/b962d0127bdc081180f8 to your computer and use it in GitHub Desktop.
Save akki777-zz/b962d0127bdc081180f8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../cool-clock/cool-clock.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#cool_clock {
width: 400px;
height: 300px;
left: 380px;
top: 240px;
position: absolute;
}
</style>
<cool-clock id="cool_clock"></cool-clock>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment