Created
July 10, 2014 15:37
-
-
Save v19i/dc9c10d71533db4e9972 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="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#datalytics_template { | |
width: 650px; | |
height: 550px; | |
position: absolute; | |
top: 40px; | |
right: 0px; | |
bottom: 0px; | |
left: 130px; | |
} | |
#section { | |
width: 100%; | |
height: 150px; | |
position: absolute; | |
left: 0px; | |
top: 0px; | |
background-color: rgb(250, 250, 250); | |
} | |
#section1 { | |
width: 100%; | |
height: 400px; | |
position: absolute; | |
top: 150px; | |
background-color: rgb(65, 242, 56); | |
} | |
#core_card { | |
width: 300px; | |
height: 300px; | |
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; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<datalytics-template id="datalytics_template"> | |
<section id="section" header></section> | |
<section id="section1" battle> | |
<core-card id="core_card" layout vertical></core-card> | |
</section> | |
</datalytics-template> | |
</template> | |
<script> | |
Polymer('my-element', { | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment