Last active
August 29, 2015 14:16
-
-
Save jelliott/e34568e670a1a996ce8e 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="../smoothie-chart/smoothie-chart.html"> | |
| <link rel="import" href="../topeka-elements/topeka-resources.html"> | |
| <link rel="import" href="../topeka-elements/topeka-profile.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| #smoothie_chart { | |
| left: 40px; | |
| top: 70px; | |
| width: 4000px; | |
| position: absolute; | |
| } | |
| #section { | |
| width: 420px; | |
| height: 630px; | |
| border: 5px solid rgb(204, 204, 204); | |
| left: 40px; | |
| top: 20px; | |
| position: absolute; | |
| } | |
| #paper_tabs { | |
| color: rgb(255, 255, 255); | |
| box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 2px; | |
| background-color: rgb(0, 188, 212); | |
| } | |
| #section2 { | |
| left: 240px; | |
| top: 80px; | |
| position: absolute; | |
| } | |
| #section3 { | |
| left: 50px; | |
| top: 0px; | |
| position: absolute; | |
| } | |
| #section4 { | |
| left: 750px; | |
| top: 410px; | |
| position: absolute; | |
| } | |
| #core_ajax { | |
| left: 1020px; | |
| top: 1200px; | |
| position: absolute; | |
| } | |
| #core_ajax1 { | |
| left: 1520px; | |
| top: 1200px; | |
| position: absolute; | |
| } | |
| #core_card { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| border-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; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| #paper_ripple { | |
| width: 100%; | |
| height: 100%; | |
| position: absolute; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| #topeka_app { | |
| width: 600px; | |
| height: 300px; | |
| min-height: 450px; | |
| left: 580px; | |
| top: 30px; | |
| position: absolute; | |
| } | |
| #topeka_profile { | |
| width: 600px; | |
| height: 300px; | |
| left: 350px; | |
| top: 410px; | |
| position: absolute; | |
| } | |
| </style> | |
| <smoothie-chart id="smoothie_chart"></smoothie-chart> | |
| <section id="section2" layout horizontal center center-justified> | |
| </section> | |
| <section id="section4"> | |
| <section id="section3"> | |
| </section> | |
| </section> | |
| <topeka-profile id="topeka_profile" center layout vertical></topeka-profile> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment