Skip to content

Instantly share code, notes, and snippets.

@diegocardoso93
Last active August 29, 2015 14:21
Show Gist options
  • Save diegocardoso93/71ce490b6bb485cb3f08 to your computer and use it in GitHub Desktop.
Save diegocardoso93/71ce490b6bb485cb3f08 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
#yt_search_video {
width: 300px;
height: 300px;
left: 1020px;
top: 130px;
position: absolute;
}
#paper_tabs {
width: 480px;
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
left: 70px;
top: 60px;
position: absolute;
background-color: rgb(0, 188, 212);
}
#paper_tab2 {
opacity: 1;
}
#topeka_datasource {
left: 560px;
top: 240px;
position: absolute;
}
</style>
<topeka-datasource url="../topeka-elements/categories.json" id="topeka_datasource" hidden></topeka-datasource>
<paper-tabs selected="2" selectedindex="2" id="paper_tabs" horizontal center layout>
<paper-tab id="paper_tab" inline flex center-center horizontal layout>ITEM ONE</paper-tab>
<paper-tab id="paper_tab1" inline flex center-center horizontal layout>ITEM TWO</paper-tab>
<paper-tab id="paper_tab2" inline flex center-center horizontal layout active>ITEM THREE</paper-tab>
<paper-tab id="paper_tab3" inline flex center-center horizontal layout>ITEM FOUR</paper-tab>
<paper-tab id="paper_tab4" inline flex center-center horizontal layout>ITEM FIVE</paper-tab>
</paper-tabs>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment