Created
July 4, 2014 16:19
-
-
Save c0d3rm0nk3y/1e056e5cd4dfad35ea4c 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"> | |
<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: 150px; | |
top: 60px; | |
background-color: rgb(255, 255, 255); | |
} | |
#contentContainer { | |
width: 250px; | |
height: 250px; | |
} | |
</style> | |
<core-card id="core_card" layout horizontal center> | |
<div id="prevContainer" layout vertical center> | |
<core-icon-button icon="menu" id="btnPrev" theme="core-light-theme"></core-icon-button> | |
</div> | |
<div id="contentContainer"> | |
<core-card> | |
</core-card> | |
</div> | |
<div id="nextContainer" layout vertical center> | |
<core-icon-button icon="menu" id="btnNext" theme="core-light-theme"></core-icon-button> | |
</div> | |
</core-card> | |
</template> | |
<script> | |
Polymer('my-element', { | |
word: 'monkey' | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment