Skip to content

Instantly share code, notes, and snippets.

@sujith3g
Created April 30, 2015 05:28
Show Gist options
  • Select an option

  • Save sujith3g/cf990da6c1224ab79bf7 to your computer and use it in GitHub Desktop.

Select an option

Save sujith3g/cf990da6c1224ab79bf7 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="sg-pat">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.bold-text {
font-weight: bold;
}
.patent-item {
background-color: rgb(255, 255, 255);
}
.patent-item div {
margin: 5px;
padding: 5px;
}
</style>
<div id="div" class="patent-item" horizontal layout center-justified>
<div id="div1">
<span class="bold-text">US 5554447 A1</span>
</div>
<div>
<span>Title comes here</span>
</div>
<div>
<span>12-Jun-2012</span>
</div>
<div>
<span>12-Jun-1999</span>
</div>
</div>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment