Skip to content

Instantly share code, notes, and snippets.

@basilboli
Created June 30, 2014 15:35
Show Gist options
  • Save basilboli/fa6020745cf1b662e50e to your computer and use it in GitHub Desktop.
Save basilboli/fa6020745cf1b662e50e 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-slider/paper-slider.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_toolbar {
right: 0px;
left: 10px;
color: rgb(255, 255, 255);
fill: rgb(255, 255, 255);
top: 150px;
position: absolute;
background-color: rgb(79, 125, 201);
}
#paper_slider {
left: 740px;
top: 450px;
position: absolute;
}
#paper_tab {
width: 120px;
height: 40px;
left: 240px;
top: 330px;
position: absolute;
}
</style>
<core-toolbar id="core_toolbar">
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
<div id="div" flex>salle 1</div>
</core-toolbar>
<paper-slider immediatevalue="0" id="paper_slider"></paper-slider>
<paper-tab id="paper_tab">TAB</paper-tab>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment