Skip to content

Instantly share code, notes, and snippets.

@Xect
Created January 8, 2015 12:09
Show Gist options
  • Save Xect/9d563e64d97f2896691e to your computer and use it in GitHub Desktop.
Save Xect/9d563e64d97f2896691e to your computer and use it in GitHub Desktop.
Hast database v 1.0
<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: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
background-color: rgb(0, 0, 0);
}
#paper_tabs {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 0, 0);
}
#core_card {
position: absolute;
width: 97%;
height: 97%;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 20px;
top: 70px;
background-color: rgb(30, 30, 30);
}
#h1 {
font-size: 50px;
color: rgb(0, 255, 0);
}
#core_card1 {
width: 950px;
height: 150px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 40px;
top: 15px;
opacity: 1;
position: absolute;
background-color: rgb(0, 0, 0);
}
</style>
<paper-tabs selected="0" selectedindex="0" id="paper_tabs" horizontal center layout one flex>
<paper-tab id="paper_tab" inline flex center-center horizontal layout active>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>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>
<core-card id="core_card" layout vertical>
<core-card id="core_card1" horizontal layout center>
<h1 id="h1" center-justified center horizontal layout one flex> The HAST Database </h1>
</core-card>
</core-card>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment