Skip to content

Instantly share code, notes, and snippets.

@saki007ster
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save saki007ster/a139654249cf96cb9d48 to your computer and use it in GitHub Desktop.

Select an option

Save saki007ster/a139654249cf96cb9d48 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/topeka-datasource.html">
<link rel="import" href="../topeka-elements/category-icons.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../topeka-elements/avatars.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#div {
height: 100%;
width: 100%;
overflow: hidden;
left: 0px;
top: 0px;
position: absolute;
}
#core_icon {
height: 64px;
width: 64px;
left: 970px;
top: 380px;
}
#section {
box-sizing: border-box;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
}
#toolbar {
box-sizing: border-box;
height: 50%;
position: relative;
color: rgb(255, 255, 255);
font-size: 48px;
background-color: rgb(0, 187, 211);
}
#tiles-container {
padding-left: 3px;
height: 85%;
}
#tile-profile {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
background-color: rgb(204, 204, 204);
}
#div1 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(170, 170, 170);
}
#tile-general {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
}
#section2 {
background-color: rgb(255, 255, 141);
}
#core_icon1 {
height: 128px;
width: 128px;
}
#div2 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(255, 235, 59);
}
#div3 {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
background-color: rgb(185, 246, 202);
}
#core_icon2 {
height: 128px;
width: 128px;
}
#div4 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(15, 157, 88);
}
#div5 {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
background-color: rgb(255, 138, 128);
}
#core_icon3 {
height: 128px;
width: 128px;
}
#div6 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(219, 68, 55);
}
#div7 {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
background-color: rgb(130, 177, 255);
}
#core_icon4 {
height: 128px;
width: 128px;
}
#div8 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(66, 133, 244);
}
#div9 {
box-sizing: border-box;
float: left;
height: 30%;
width: 30%;
margin: 3px;
background-color: rgb(179, 136, 255);
}
#core_icon5 {
height: 128px;
width: 128px;
}
#div10 {
padding: 8px;
color: rgb(255, 255, 255);
background-color: rgb(126, 87, 194);
}
#core_icon6 {
height: 64px;
width: 64px;
}
</style>
<div id="div">
<topeka-datasource url="../topeka-elements/categories.json" id="datasource" hidden></topeka-datasource>
</div>
<section id="section" layout vertical designmeta="quiz-demo-grid">
<div id="toolbar" class="tall-toolbar categories" horizontal center-justified center layout>
<span id="span">Drupal Camp Pune 2015</span>
</div>
<div id="tiles-container" class="tiles-container" layout wrap horizontal around-justified center relative>
<div id="tile-profile" class="tile" layout vertical relative>
<section id="section1" class="tile-top" flex layout horizontal center center-justified>
<core-icon icon="category-icons:food" id="core_icon" designmeta="topeka-icon"></core-icon>
<core-icon icon="avatars:avatar-1" id="core_icon6" designmeta="topeka-avatar"></core-icon>
</section>
<div id="div1" class="tile-bottom">Announcements </div>
</div>
<div id="tile-general" class="tile" layout vertical relative>
<section id="section2" class="tile-top" flex layout horizontal center center-justified hero hero-id="top">
<core-icon icon="category-icons:knowledge" id="core_icon1" cross-fade-delayed designmeta="topeka-icon"></core-icon>
</section>
<div id="div2" class="tile-bottom" hero hero-id="bottom">
<span id="span1">Sessions</span>
</div>
</div>
<div id="div3" class="tile" layout vertical relative>
<section id="section3" class="tile-top" flex layout horizontal center center-justified>
<core-icon icon="category-icons:history" id="core_icon2" designmeta="topeka-icon"></core-icon>
</section>
<div id="div4" class="tile-bottom">Sponsors</div>
</div>
<div id="div5" class="tile" layout vertical relative>
<section id="section4" class="tile-top" flex layout horizontal center center-justified>
<core-icon icon="category-icons:geography" id="core_icon3" designmeta="topeka-icon"></core-icon>
</section>
<div id="div6" class="tile-bottom">Venue </div>
</div>
<div id="div7" class="tile" layout vertical relative>
<section id="section5" class="tile-top" flex layout horizontal center center-justified>
<core-icon icon="category-icons:entertainment" id="core_icon4" designmeta="topeka-icon"></core-icon>
</section>
<div id="div8" class="tile-bottom">Pune Drupal Group </div>
</div>
<div id="div9" class="tile" layout vertical relative>
<section id="section6" class="tile-top" flex layout horizontal center center-justified>
<core-icon icon="category-icons:music" id="core_icon5" designmeta="topeka-icon"></core-icon>
</section>
<div id="div10" class="tile-bottom">
Category 5
</div>
</div>
</div>
</section>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment