Created
November 2, 2014 17:43
-
-
Save richsilv/144d3372b6a3dec8abb6 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="../core-item/core-item.html"> | |
<link rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../paper-calculator/paper-calculator.html"> | |
<link rel="import" href="../topeka-elements/avatars.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_header_panel { | |
width: 380px; | |
height: 560px; | |
left: 440px; | |
top: 140px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#section { | |
height: 1000px; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
#core_item { | |
left: 80px; | |
top: 26px; | |
position: absolute; | |
} | |
#core_item1 { | |
left: 80px; | |
top: 106px; | |
position: absolute; | |
} | |
#core_item2 { | |
left: 80px; | |
top: 186px; | |
position: absolute; | |
} | |
#paper_calculator { | |
width: 400px; | |
height: 560px; | |
left: 820px; | |
top: 140px; | |
position: absolute; | |
} | |
#core_selector { | |
left: 920px; | |
top: 210px; | |
position: absolute; | |
} | |
#core_icon { | |
height: 64px; | |
width: 64px; | |
border-top-left-radius: 50%; | |
border-top-right-radius: 50%; | |
border-bottom-right-radius: 50%; | |
border-bottom-left-radius: 50%; | |
overflow: hidden; | |
} | |
#core_icon1 { | |
height: 64px; | |
width: 64px; | |
margin: 0px 8px; | |
border-top-left-radius: 50%; | |
border-top-right-radius: 50%; | |
border-bottom-right-radius: 50%; | |
border-bottom-left-radius: 50%; | |
overflow: hidden; | |
} | |
#core_icon2 { | |
height: 64px; | |
width: 64px; | |
border-top-left-radius: 50%; | |
border-top-right-radius: 50%; | |
border-bottom-right-radius: 50%; | |
border-bottom-left-radius: 50%; | |
overflow: hidden; | |
} | |
#chart_js { | |
width: 300px; | |
height: 200px; | |
left: 40px; | |
top: 266px; | |
position: absolute; | |
} | |
</style> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div">Header</div> | |
</core-toolbar> | |
<section id="section"> | |
<core-item id="core_item" icon="settings" label="Item" horizontal center layout></core-item> | |
<core-item id="core_item1" icon="settings" label="Item" horizontal center layout></core-item> | |
<core-item id="core_item2" icon="settings" label="Item" horizontal center layout></core-item> | |
<chart-js kind="Bar" id="chart_js"></chart-js> | |
</section> | |
</core-header-panel> | |
<paper-calculator responsivewidth="2000px" id="paper_calculator"></paper-calculator> | |
<core-selector selected="0" selectedindex="0" id="core_selector" flex layout horizontal> | |
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar" active></core-icon> | |
<core-icon icon="avatars:avatar-2" id="core_icon1" designmeta="topeka-avatar"></core-icon> | |
<core-icon icon="avatars:avatar-3" id="core_icon2" designmeta="topeka-avatar"></core-icon> | |
</core-selector> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment