Skip to content

Instantly share code, notes, and snippets.

@bvc3at
Last active August 29, 2015 14:07
Show Gist options
  • Save bvc3at/27e570e26b56e7fec4f0 to your computer and use it in GitHub Desktop.
Save bvc3at/27e570e26b56e7fec4f0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icons/core-icons.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;
top: 0px;
left: 0px;
}
#core_card {
position: absolute;
width: 100%;
height: 450px;
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;
left: 0px;
top: 0px;
background-color: rgb(41, 128, 185);
}
#core_selector {
left: 1230px;
top: 600px;
}
#topeka_app {
width: 300px;
height: 300px;
min-height: 450px;
left: 1290px;
top: 590px;
}
#img {
left: 0px;
top: 10px;
}
#core_icon {
width: 281px;
height: 77px;
opacity: 1;
}
</style>
<core-card id="core_card" layout vertical>
<core-icon src="http://mec-vlz.comuv.com/template/img/logo_old.png" id="core_icon"></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