Last active
March 16, 2016 16:51
-
-
Save anniesullie/8777207caca1e71f0d8d to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../paper-tabs/paper-tabs.html"> | |
<link rel="import" href="../paper-tabs/paper-tab.html"> | |
<link rel="import" href="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#section { | |
width: 420px; | |
height: 630px; | |
border: 5px solid rgb(204, 204, 204); | |
left: 150px; | |
top: 120px; | |
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); | |
} | |
#div { | |
left: 370px; | |
top: 1080px; | |
position: absolute; | |
} | |
#paper_tab2 { | |
width: 140px; | |
height: 50px; | |
} | |
#section2 { | |
left: 630px; | |
top: 1410px; | |
position: absolute; | |
} | |
#paper_radio_group { | |
left: 5px; | |
top: 7px; | |
position: absolute; | |
} | |
</style> | |
<section id="section" layout vertical> | |
<paper-tabs noink nobar selected="0" selectedindex="0" id="paper_tabs" horizontal center layout> | |
<paper-tab id="{{ $.section.section_jobs }}" inline flex center-center horizontal layout active>Jobs</paper-tab> | |
<paper-tab id="{{ $.section.section_alerts }}" inline flex center-center horizontal layout>Alerts</paper-tab> | |
<paper-tab id="paper_tab_new_job" inline flex center-center horizontal layout>New Job</paper-tab> | |
</paper-tabs> | |
<section id="section_jobs" flex relative> | |
<paper-radio-group selected="Continuous" valueattr="label" selectedindex="1" id="paper_radio_group"> | |
<paper-radio-button label="One-time" id="paper_radio_button_one_time"></paper-radio-button> | |
<paper-radio-button checked label="Continuous" id="paper_radio_button_continuous"></paper-radio-button> | |
</paper-radio-group> | |
</section> | |
<section id="section_alerts" flex relative>TODO(sullivan): ALERTS</section> | |
</section> | |
<div id="div" layout horizontal> | |
</div> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment