Skip to content

Instantly share code, notes, and snippets.

@weiznich
Created July 18, 2014 21:13
Show Gist options
  • Save weiznich/6ea2e06a83263fff257e to your computer and use it in GitHub Desktop.
Save weiznich/6ea2e06a83263fff257e to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
position: absolute;
width: 300px;
height: 100px;
background-color: rgb(255, 255, 255);
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: 440px;
top: 140px;
}
.done_box {
margin: 35px;
}
#paper_item {
left: 740px;
top: 510px;
position: absolute;
}
#core_card1 {
position: absolute;
width: 300px;
height: 300px;
background-color: rgb(255, 255, 255);
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: 440px;
top: 260px;
}
</style>
<core-card id="core_card" layout vertical>
<paper-checkbox checked label="Zimmer Aufräumen" id="paper_checkbox" class="done_box"></paper-checkbox>
</core-card>
<core-card id="core_card1" layout vertical>
<paper-checkbox label="Mirakel 3 UI Entwurf" id="paper_checkbox1" class="done_box"></paper-checkbox>
</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