Skip to content

Instantly share code, notes, and snippets.

@imehesz
Last active August 29, 2015 14:13
Show Gist options
  • Save imehesz/fa4a867dad7e75be50c9 to your computer and use it in GitHub Desktop.
Save imehesz/fa4a867dad7e75be50c9 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../google-map/google-map-directions.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<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;
}
#google_map_directions {
left: 530px;
top: 250px;
position: absolute;
}
#paper_button {
left: 500px;
top: 380px;
position: absolute;
}
#paper_checkbox {
left: 510px;
top: 420px;
position: absolute;
}
#div {
left: 500px;
top: 450px;
position: absolute;
}
</style>
<google-map-directions id="google_map_directions"></google-map-directions>
<paper-button id="paper_button">button</paper-button>
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox>
<div id="div" layout horizontal>
<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