Skip to content

Instantly share code, notes, and snippets.

@aericson
Last active August 29, 2015 14:14
Show Gist options
  • Save aericson/ec46c1ba34ff9fb013d8 to your computer and use it in GitHub Desktop.
Save aericson/ec46c1ba34ff9fb013d8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../topeka-elements/avatars.html">
<link rel="import" href="../core-icon/core-icon.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
position: absolute;
width: 840px;
height: 570px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 290px;
top: 120px;
background-color: rgb(255, 255, 255);
}
#core_item {
left: 1660px;
top: 690px;
}
#core_header_panel {
width: 300px;
height: 400px;
left: 1830px;
top: 660px;
}
#core_card1 {
position: absolute;
width: 300px;
height: 300px;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
left: 1770px;
top: 660px;
background-color: rgb(255, 255, 255);
}
#core_drawer_panel {
position: absolute;
top: 890px;
right: 0px;
bottom: 0px;
left: 1890px;
}
#core_pages {
width: 400px;
height: 400px;
border: 1px solid silver;
left: 1790px;
top: 740px;
}
#core_icon {
height: 64px;
width: 64px;
}
</style>
<core-card id="core_card" layout vertical>
<core-icon icon="avatars:avatar-1" id="core_icon" designmeta="topeka-avatar"></core-icon>
</core-card>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment