Skip to content

Instantly share code, notes, and snippets.

@fosterbuster
Last active March 25, 2016 14:20
Show Gist options
  • Save fosterbuster/4c381a22a42b1786a0d9 to your computer and use it in GitHub Desktop.
Save fosterbuster/4c381a22a42b1786a0d9 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="LoginElement">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_selector {
width: 100%;
height: 50px;
left: 1320px;
top: 590px;
}
#core_menu_button {
left: 1320px;
top: 440px;
}
#core_animated_pages {
width: 420px;
height: 582px;
overflow: hidden;
left: 1390px;
top: 510px;
background-color: rgb(238, 238, 238);
}
#core_scroll_header_panel {
width: 380px;
height: 460px;
left: 1430px;
top: 610px;
}
#section {
width: 420px;
height: 630px;
border: 5px solid rgb(204, 204, 204);
left: 1400px;
top: 600px;
}
#paper_icon_button {
left: 1400px;
top: 610px;
}
#core_card {
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: 520px;
top: 230px;
background-color: rgb(255, 255, 255);
}
</style>
<core-card id="core_card" layout vertical></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