Skip to content

Instantly share code, notes, and snippets.

@Nevexo
Created July 20, 2014 10:49
Show Gist options
  • Save Nevexo/cec855497f797d9ec85c to your computer and use it in GitHub Desktop.
Save Nevexo/cec855497f797d9ec85c to your computer and use it in GitHub Desktop.
designer
<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;
}
#div {
left: 580px;
top: 430px;
position: absolute;
}
#section {
width: 100%;
height: 100%;
border: 5px solid rgb(204, 204, 204);
left: 0px;
top: 0px;
position: absolute;
}
#paper_tabs {
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px;
background-color: rgb(0, 188, 212);
}
</style>
<div id="div" layout horizontal>
</div>
<section id="section" layout vertical>
<paper-tabs noink nobar selected="2" id="paper_tabs">
<paper-tab on-tap="setVisibility('sub3', 'inline'); setVisibility('sub4', 'none');" id="paper_tab" on-tap>ITEM ONE</paper-tab>
<paper-tab id="paper_tab1">ITEM TWO</paper-tab>
</paper-tabs>
<section id="section1" flex relative>
<div id="sub3"><h3>To submit your files email <a href="mailto:cameron102012@gmail.com">cameron102012@gmail.com</a> and attatch your CSS/JS or both and a username and password you would like (don't use a password you use anyware else) allow upto 5 days before resubmission you will get a reply with your account page acount number and thats it :)</h3></div>
<div id="sub4"><h3>To remove your files from our servers send an email to <a href="mailto:cameron102012@gmail.com">cameron102012@gmail.com</a> with your account code from your set-up email and tell me you want it taking down... sad to see you go hopefully your hosting something else with us thanks after that your account page will be removed.</h3></div>
</section>
</section>
</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