Skip to content

Instantly share code, notes, and snippets.

@ivanviragine
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanviragine/8a2ce101ba553e98098f to your computer and use it in GitHub Desktop.
Save ivanviragine/8a2ce101ba553e98098f 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="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.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>
#core_toolbar {
color: white;
background-color: rgb(40, 89, 163);
}
#div1 {
left: 940px;
top: 840px;
position: absolute;
}
#paper_fab {
position: absolute;
bottom: 20px;
right: 20px;
background-color: rgb(40, 89, 163);
}
</style>
<core-toolbar id="core_toolbar" class="medium-tall">
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button>
<div id="div" flex>Empréstimo</div>
<paper-icon-button icon="search"></paper-icon-button>
<div class="bottom fit" horizontal layout>
<paper-tabs selected="0" selectedindex="0" id="paper_tabs" flex horizontal center layout>
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>Emprestei</paper-tab>
<paper-tab id="paper_tab1" inline flex center-center horizontal layout>Emprestado</paper-tab>
</paper-tabs>
</div>
</core-toolbar>
<paper-fab icon="add" id="paper_fab"></paper-fab>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment