Created
July 26, 2014 23:50
-
-
Save carlobellettini/65775f704b6cb961c887 to your computer and use it in GitHub Desktop.
designer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../core-animated-pages/core-animated-pages.html"> | |
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#core_pages { | |
width: 400px; | |
height: 400px; | |
border: 1px solid silver; | |
left: 1320px; | |
top: 670px; | |
} | |
#core_animated_pages { | |
width: 1150px; | |
height: 750px; | |
overflow: hidden; | |
top: 40px; | |
position: relative; | |
left: 20px; | |
background-color: rgb(238, 238, 238); | |
} | |
#section { | |
width: 100%; | |
left: 0px; | |
background-color: rgb(246, 246, 246); | |
} | |
#core_card { | |
width: 300px; | |
height: 300px; | |
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; | |
background-color: rgb(255, 255, 255); | |
} | |
#core_card1 { | |
width: 300px; | |
height: 300px; | |
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; | |
background-color: rgb(255, 255, 255); | |
} | |
#core_card2 { | |
width: 300px; | |
height: 300px; | |
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; | |
background-color: rgb(255, 255, 255); | |
} | |
#core_icon { | |
height: 24px; | |
width: 24px; | |
} | |
#paper_fab { | |
left: 1310px; | |
top: 520px; | |
} | |
#div { | |
left: 1320px; | |
top: 720px; | |
} | |
#paper_input { | |
position: relative; | |
left: 10px; | |
} | |
#paper_input1 { | |
position: relative; | |
left: 10px; | |
} | |
</style> | |
<core-animated-pages selectedindex="0" notap id="core_animated_pages"> | |
<section id="section" layout horizontal center center-justified active> | |
<core-card id="core_card" layout vertical> | |
<core-field id="core_field" icon="search" theme="core-light-theme" center horizontal layout> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<core-input placeholder="text input" inputvalue="prova" id="core_input" flex></core-input> | |
</core-field> | |
</core-card> | |
<core-card id="core_card1" layout vertical> | |
<paper-input label="Nome" floatinglabel id="paper_input" start wrap center-justified></paper-input> | |
<paper-input label="Cognome" floatinglabel id="paper_input1"></paper-input> | |
</core-card> | |
<core-card id="core_card2" layout vertical></core-card> | |
</section> | |
<section id="section1"> | |
</section> | |
<section id="section2"> | |
</section> | |
</core-animated-pages> | |
</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