Last active
October 19, 2016 10:20
-
-
Save linebreaker/d645a0bf24cf70aa799898e995410dc4 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-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 240px; | |
height: 345px; | |
box-sizing: border-box; | |
background-color: rgb(255, 0, 83); | |
opacity: 1; | |
} | |
#core_card { | |
background-color: rgb(255, 0, 83); | |
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: 0px; | |
top: 0px; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 670px; | |
right: 0px; | |
bottom: 0px; | |
left: 1490px; | |
} | |
#section { | |
border: 0px; | |
opacity: 1; | |
} | |
#topeka_datasource { | |
left: -640px; | |
top: -244px; | |
position: absolute; | |
} | |
</style> | |
<core-card id="gdg-team" layout vertical three flex> | |
<img name="image" height="225" hspace="0" src="https://s3.amazonaws.com/storagev1/public/f1/hariri%2C+tarek+_+gdg+team.jpg" currentsrc="https://s3.amazonaws.com/storagev1/public/f1/hariri%2C+tarek+_+gdg+team.jpg" vspace="0" width="225" complete naturalheight="309" naturalwidth="309" x="0" y="0" id="img" source="https://s3.amazonaws.com/storagev1/public/f1/hariri%2C+tarek+_+gdg+team.jpg" twelve flex center horizontal layout center-justified></img> | |
<section id="section" twelve flex> | |
<div id="div" class="container"> | |
</div> | |
</section> | |
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button> | |
<core-item id="core_item" icon="settings" label="Item" horizontal center layout></core-item> | |
</core-card> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment