Created
April 30, 2015 05:28
-
-
Save sujith3g/cf990da6c1224ab79bf7 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="../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