Created
July 14, 2014 22:08
-
-
Save c0d3rm0nk3y/d262377fb0f55a4ab9b5 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-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<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-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../paper-progress/paper-progress.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<polymer-element name="my-element" attributes="counter"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_scaffold { | |
position: absolute; | |
top: 0px; | |
right: 0px; | |
bottom: 0px; | |
left: 0px; | |
width: 100%; | |
height: 100%; | |
} | |
#core_header_panel { | |
background-color: rgb(255, 255, 255); | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(79, 125, 201); | |
} | |
#core_menu { | |
font-size: 16px; | |
} | |
#core_menu1 { | |
font-size: 16px; | |
} | |
#core_card { | |
width: 300px; | |
height: 300px; | |
border-top-left-radius: 2px; | |
border-top-right-radius: 2px; | |
border-bottom-right-radius: 2px; | |
border-bottom-left-radius: 2px; | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
background-color: rgb(255, 255, 255); | |
} | |
#card_container { | |
position: absolute; | |
top: 0px; | |
left: 0px; | |
width: 100%; | |
margin: 15px; | |
} | |
#core_icon { | |
height: 24px; | |
width: 24px; | |
} | |
#cWord { | |
width: 100%; | |
height: 100%; | |
margin: 7px; | |
} | |
#paper_progress { | |
margin: 10px; | |
} | |
</style> | |
<core-scaffold id="core_scaffold"> | |
<core-header-panel mode="seamed" id="core_header_panel" navigation flex> | |
<core-toolbar id="core_toolbar"> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input placeholder="text input" id="core_input" flex></core-input> | |
</core-field> | |
</core-toolbar> | |
<core-menu selected="Item2" valueattr="label" id="core_menu" theme="core-light-theme"> | |
</core-menu> | |
<core-menu selected="1" selectedindex="1" id="core_menu1"> | |
<core-submenu label="News" icon="settings" valueattr="name" id="core_submenu"> | |
<core-item label="Google News" size="24" id="core_item" horizontal center layout></core-item> | |
</core-submenu> | |
<core-submenu active selected="0" label="Podcasts" icon="settings" valueattr="name" id="core_submenu1"> | |
<core-item label="SGU" size="24" id="core_item2" horizontal center layout active></core-item> | |
</core-submenu> | |
</core-menu> | |
</core-header-panel> | |
<div id="div" tool>Chrome News</div> | |
<div id="card_container" center vertical layout center-justified> | |
<div id="hContainer" layout horizontal center> | |
<core-icon-button icon="chevron-left" id="btnPrevious" theme="core-light-theme"></core-icon-button> | |
<core-card id="core_card" layout vertical center> | |
<h2>title</h2> | |
<paper-progress id="paper_progress"></paper-progress> | |
<div id="cContainer" layout horizontal center> | |
<paper-button label="Faster" id="btnFaster" on-tap="{{ onFaster }}"></paper-button> | |
<paper-button label="Slower" id="btnSlower" on-tap="{{ onSlower }}"></paper-button> | |
</div> | |
<div id="cWord" center vertical layout center-justified> | |
<p id="pWord" on-tap="{{ onToggleViewState }}">{{ word }}</p> | |
</div> | |
</core-card> | |
<core-icon-button icon="chevron-right" id="btnNext" theme="core-light-theme"></core-icon-button> | |
</div> | |
</div> | |
</core-scaffold> | |
</template> | |
<script> | |
Polymer('my-element', { | |
word: 'monkey', | |
speed: 200, | |
ready: function () {}, | |
counterChanged: function () {}, | |
attributeChanged: function () {}, | |
onFaster: function () {}, | |
onslower: function () {}, | |
onToggleViewState: function () {} | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment