Skip to content

Instantly share code, notes, and snippets.

@michetti
Created July 2, 2014 00:15
Show Gist options
  • Save michetti/d14f0de8963af710d5ad to your computer and use it in GitHub Desktop.
Save michetti/d14f0de8963af710d5ad to your computer and use it in GitHub Desktop.
designer
<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;
top: 0px;
left: 0px;
}
#core_card {
position: absolute;
width: 490px;
height: 220px;
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: 420px;
top: 170px;
background-color: rgb(255, 255, 255);
}
#section {
left: 1130px;
top: 460px;
position: absolute;
}
#section1 {
left: 1160px;
top: 460px;
position: absolute;
}
</style>
<core-card id="core_card" layout vertical>
<h3>Alexandre Michetti Manduca</h3>
<section id="contacts">
<p>Cel : +55 16 98115-1965</p>
<p>Home: +55 16 3114-1531</p>
</section>
</core-card>
</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