Skip to content

Instantly share code, notes, and snippets.

@fractefactos
Last active August 29, 2015 14:18
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save fractefactos/76bcb22a58916b5c73d3 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/category-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#section {
box-sizing: border-box;
}
#toolbar {
box-sizing: border-box;
color: rgb(255, 255, 255);
font-size: 48px;
background-color: rgb(0, 187, 211);
}
#paper_tabs1 {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 188, 212);
}
#paper_button {
position: relative;
}
#paper_tab {
width: 120px;
height: 40px;
left: 190px;
top: 140px;
position: absolute;
}
</style>
<section id="section" layout vertical designmeta="quiz-demo-grid" twelve flex>
<div id="toolbar" class="tall-toolbar categories" horizontal center-justified center layout twelve flex>
<span id="span">Ardia Works</span>
</div>
</section>
<paper-tabs selected="0" selectedindex="0" id="paper_tabs1" center twelve flex center-justified wrap horizontal layout>
<paper-tab id="paper_tab5" inline flex center-center horizontal layout active>ITEM ONE</paper-tab>
<paper-tab id="paper_tab6" inline flex center-center horizontal layout>ITEM TWO</paper-tab>
<paper-tab id="paper_tab7" inline flex center-center horizontal layout>ITEM THREE</paper-tab>
<paper-tab id="paper_tab8" inline flex center-center horizontal layout>ITEM FOUR</paper-tab>
<paper-tab id="paper_tab9" inline center-center horizontal layout>ITEM FIVE</paper-tab>
</paper-tabs>
<paper-button id="paper_button" horizontal layout center wrap two flex center-justified>button</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment