Skip to content

Instantly share code, notes, and snippets.

@Marcelolynx
Last active August 29, 2015 14:24
Show Gist options
  • Save Marcelolynx/9a8e9d997d797d8283ed to your computer and use it in GitHub Desktop.
Save Marcelolynx/9a8e9d997d797d8283ed to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../paper-progress/paper-progress.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#core_toolbar {
right: 0px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
width: 90%;
left: 160px;
top: 0px;
position: absolute;
background-color: rgb(79, 125, 201);
}
#paper_progress {
left: 150px;
top: 60px;
position: absolute;
}
</style>
<core-toolbar id="core_toolbar" wrap-reverse>
</core-toolbar>
<paper-progress id="paper_progress"></paper-progress>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment