Last active
August 29, 2015 14:11
-
-
Save oceangravity/b2e7784aa42171a4f824 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-ajax/core-ajax.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../topeka-elements/category-icons.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_icon { | |
height: 100%; | |
width: 100%; | |
left: -540px; | |
top: 40px; | |
position: absolute; | |
} | |
#topeka_profile { | |
width: 300px; | |
height: 300px; | |
left: 1500px; | |
top: 500px; | |
} | |
#core_ajax { | |
left: 430px; | |
top: 250px; | |
position: absolute; | |
} | |
#core_field { | |
left: 170px; | |
top: 70px; | |
position: absolute; | |
width: 580px; | |
height: 40px; | |
} | |
#core_toolbar { | |
right: 0px; | |
left: 0px; | |
color: rgb(255, 255, 255); | |
fill: rgb(255, 255, 255); | |
top: 0px; | |
position: absolute; | |
background-color: rgb(79, 125, 201); | |
} | |
</style> | |
<core-ajax handleas="json" method="GET" id="core_ajax" hidden></core-ajax> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon1"></core-icon> | |
<core-input id="core_input" flex></core-input> | |
</core-field> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div" flex>Toolbar</div> | |
</core-toolbar> | |
<core-icon icon="category-icons:food" id="core_icon" designmeta="topeka-icon"></core-icon> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment