Skip to content

Instantly share code, notes, and snippets.

@linebreaker
Last active November 8, 2016 05:12
Show Gist options
  • Save linebreaker/cede82cf45ce72e8544287ded5e20e59 to your computer and use it in GitHub Desktop.
Save linebreaker/cede82cf45ce72e8544287ded5e20e59 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-ripple/paper-ripple.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../topeka-elements/category-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="gdg-card">
<template>
<style>
:host {
box-sizing: border-box;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#core_card {
position: relative;
width: 215px;
height: 315px;
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;
}
#core_header_panel {
width: 300px;
height: 400px;
left: 1450px;
top: 540px;
}
#section {
left: 1440px;
top: 650px;
}
#core_selector {
width: 100%;
height: 50px;
left: 1440px;
top: 640px;
}
#core_drawer_panel {
position: absolute;
top: 610px;
right: 0px;
bottom: 0px;
left: 1510px;
}
#core_ajax {
left: 710px;
top: 400px;
position: absolute;
}
#paper_fab {
left: 1590px;
top: 530px;
}
#div {
left: 1520px;
top: 570px;
}
#paper_icon_button {
position: absolute;
padding: 5px;
}
#paper_ripple {
opacity: 0.3;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#paper_button {
width: 30px;
height: 30px;
left: 0px;
top: 0px;
}
#topeka_profile {
width: 300px;
height: 300px;
left: 1450px;
top: 630px;
}
#ace_element {
width: 400px;
height: 300px;
left: 80px;
top: 60px;
position: absolute;
}
#gdg_tile {
width: 200px;
height: 200px;
}
#topeka_datasource {
left: 1540px;
top: 530px;
}
#core_icon1 {
height: 128px;
width: 128px;
}
</style>
<core-card id="core_card" layout vertical>
<paper-ripple id="paper_ripple" one flex start center-justified>
</paper-ripple>
<paper-button id="paper_button" wrap center justified horizontal layout>{{ $.core_ajax.test }}</paper-button>
<img height="309" 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="215" complete naturalheight="309" naturalwidth="309" x="0" y="-122" horizontal layout center center-justified></img>
<core-ajax handleas="text" method="GET" id="core_ajax" hidden></core-ajax>
<core-icon src="https://s3.amazonaws.com/storagev1/public/f1/hariri%2C+tarek+_+gdg+team.jpg" icon="category-icons:food" id="core_icon1" designmeta="topeka-icon"></core-icon>
</core-card>
</template>
<script>
Polymer({
is: 'gdg-team',
properties: null
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment