Last active
August 29, 2015 14:10
-
-
Save ericNeufeld/279d0519bba90afd4f88 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-tooltip/core-tooltip.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_toolbar { | |
right: 0px; | |
left: -10px; | |
background-color: rgb(79, 125, 201); | |
color: rgb(255, 255, 255); | |
fill: #ffffff; | |
top: 0px; | |
position: absolute; | |
} | |
#core_icon { | |
left: 690px; | |
top: 630px; | |
} | |
#core_selector { | |
width: 100%; | |
height: 50px; | |
left: 520px; | |
top: 500px; | |
position: absolute; | |
} | |
#core_tooltip { | |
left: 228px; | |
top: 30px; | |
position: absolute; | |
} | |
#core_selector2 { | |
width: 100%; | |
height: 50px; | |
left: 1350px; | |
top: 410px; | |
position: absolute; | |
} | |
#core_selector3 { | |
width: 100%; | |
height: 50px; | |
left: 648px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_menu_button { | |
left: 1520px; | |
top: 520px; | |
} | |
</style> | |
<core-selector selected="0" id="core_selector"></core-selector> | |
<core-selector selected="0" id="core_selector1"></core-selector> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<core-tooltip active pressed label="I'm a tooltip" id="core_tooltip"> | |
</core-tooltip> | |
<core-selector selected="0" id="core_selector3"></core-selector> | |
</core-toolbar> | |
<span id="span">Hover over me.</span> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment