Last active
June 27, 2016 09:35
-
-
Save shinusuresh/854d76ab2f6b0cc73ccd8a1fd7442428 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="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.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; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 310px; | |
right: 0px; | |
bottom: 0px; | |
left: 1050px; | |
} | |
#core_header_panel1 { | |
width: 300px; | |
height: 400px; | |
left: 1050px; | |
top: 390px; | |
} | |
#core_header_panel2 { | |
width: 830px; | |
height: 420px; | |
left: 120px; | |
top: 120px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#section { | |
height: 300px; | |
background: linear-gradient(rgb(214, 227, 231), lightblue); | |
} | |
#paper_radio_group { | |
left: 40px; | |
top: 16px; | |
position: absolute; | |
} | |
#paper_radio_group1 { | |
left: 200px; | |
top: 116px; | |
position: absolute; | |
} | |
#div1 { | |
left: 40px; | |
top: 120px; | |
position: absolute; | |
width: 150px; | |
height: 30px; | |
} | |
</style> | |
<core-header-panel mode="standard" id="core_header_panel2"> | |
<core-toolbar id="core_toolbar"> | |
<div id="div">Create Categories</div> | |
</core-toolbar> | |
<section id="section"> | |
<paper-radio-group selected="Automatically select products based on conditions" valueattr="label" selectedindex="1" id="paper_radio_group" vertical layout> | |
<paper-radio-button label="Select products manually" id="paper_radio_button"></paper-radio-button> | |
<paper-radio-button checked label="Automatically select products based on conditions" id="paper_radio_button1"></paper-radio-button> | |
</paper-radio-group> | |
<paper-radio-group selected="All conditions" valueattr="label" selectedindex="0" id="paper_radio_group1"> | |
<paper-radio-button checked label="All conditions" id="paper_radio_button2"></paper-radio-button> | |
<paper-radio-button checked label="Any condition" id="paper_radio_button3"></paper-radio-button> | |
</paper-radio-group> | |
<div id="div1" center center-justified horizontal layout>Products must match:</div> | |
</section> | |
</core-header-panel> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment