Skip to content

Instantly share code, notes, and snippets.

@workingmonk
Last active August 29, 2015 14:06
Show Gist options
  • Save workingmonk/3e03b0ecf851aa483920 to your computer and use it in GitHub Desktop.
Save workingmonk/3e03b0ecf851aa483920 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#core_card {
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;
position: absolute;
left: 10%;
top: 10px;
width: 50%;
height: 100%;
background-color: rgb(255, 255, 255);
}
</style>
<core-card id="core_card" layout vertical>
<paper-item label="Home" icon="home" center horizontal layout>
<a href="/polymer"></a>
</paper-item>
<paper-item label="Dev YQLP" center horizontal layout>
<a href="http://tenddefend.corp.ne1.yahoo.com:4080/v1/test/plus.html"></a>
</paper-item>
</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