Created
June 30, 2014 16:55
-
-
Save c0d3rm0nk3y/c19e23dcbc32fa62a370 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-icons/core-icons.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_card { | |
position: absolute; | |
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; | |
left: 80px; | |
top: 50px; | |
background-color: rgb(255, 255, 255); | |
} | |
#container { | |
position: absolute; | |
top: 0px; | |
left: 0px; | |
width: 100%; | |
height: 100%; | |
} | |
</style> | |
<core-card id="core_card" layout vertical> | |
<div id="container" layout horizontal> | |
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
<div id="contentContainer" layout center vertical> | |
<h1 id="title">{{title}}</h1> | |
<h5 id="author">{{author}}</h5> | |
<p id="word">{{word}}</p> | |
<div id="controlsContainer" layout center vertical> | |
<paper-progress id="progress" value="5" min="0" max="100"></paper-progress> | |
<div id="buttonControlContainer" layout center horizontal> | |
<paper-icon-button icon="menu" id="paper_icon_button1"></paper-icon-button> | |
<paper-icon-button icon="arrow-drop-up" id="paper_icon_button1"></paper-icon-button> | |
<paper-icon-button icon="arrow-drop-down" id="paper_icon_button1"></paper-icon-button> | |
</div> | |
</div> | |
</div> | |
<paper-icon-button icon="menu" id="paper_icon_button1"></paper-icon-button> | |
</div> | |
</core-card> | |
</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