Last active
August 29, 2015 14:08
-
-
Save avinashcodes/30e0cb604257a4dec033 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or 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-drawer-panel/core-drawer-panel.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-scroll-header-panel/core-scroll-header-panel.html"> | |
| <link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
| <link rel="import" href="../paper-slider/paper-slider.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| top: 0px; | |
| left: 0px; | |
| } | |
| #core_drawer_panel { | |
| position: absolute; | |
| top: 0px; | |
| right: 0px; | |
| bottom: 0px; | |
| left: 0px; | |
| width: 100%; | |
| height: 100%; | |
| } | |
| #section1 { | |
| height: 5000px; | |
| background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
| } | |
| #section { | |
| box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
| background-color: rgb(250, 250, 250); | |
| } | |
| core-scroll-header-panel::shadow #headerBg { | |
| background-image: url(http://www.damncovers.com/wp-content/uploads/2013/01/Jet-Fighter-Air.jpg); | |
| } | |
| core-scroll-header-panel::shadow #condensedHeaderBg { | |
| background-color: rgb(79, 125, 201); | |
| } | |
| #core_scroll_header_panel { | |
| width: 100%; | |
| height: 100%; | |
| left: 0px; | |
| top: 0px; | |
| position: absolute; | |
| } | |
| #core_toolbar { | |
| color: rgb(241, 241, 241); | |
| fill: rgb(241, 241, 241); | |
| background-color: transparent; | |
| } | |
| #section2 { | |
| height: 5000px; | |
| opacity: 1; | |
| background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)) rgb(0, 0, 0); | |
| } | |
| #core_card { | |
| position: absolute; | |
| width: 470px; | |
| height: 460px; | |
| 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: 104px; | |
| top: 38px; | |
| background-color: rgb(255, 255, 255); | |
| } | |
| #paper_icon_button { | |
| width: 30px; | |
| height: 30px; | |
| } | |
| </style> | |
| <core-drawer-panel transition id="core_drawer_panel" touch-action> | |
| <section id="section" drawer></section> | |
| <section id="section1" main> | |
| <core-scroll-header-panel headermargin="128" condenses fixed headerheight="192" id="core_scroll_header_panel"> | |
| <core-toolbar id="core_toolbar" class="tall"> | |
| <core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
| <div id="div" flex></div> | |
| <core-icon-button icon="search" id="core_icon_button1"></core-icon-button> | |
| <core-icon-button icon="more-vert" id="core_icon_button2"></core-icon-button> | |
| <div id="div1" class="bottom indent"> | |
| <h3>Flight Reservation System</h3> | |
| </div> | |
| </core-toolbar> | |
| <section id="section2" content> | |
| <core-card id="core_card" layout vertical> | |
| <paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox> | |
| <paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button> | |
| <paper-slider value="62" id="paper_slider"></paper-slider> | |
| </core-card> | |
| </section> | |
| </core-scroll-header-panel> | |
| </section> | |
| </core-drawer-panel> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment