Last active
August 29, 2015 14:09
-
-
Save kokigit/883f17f01ca01c973353 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="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../paper-button/paper-button.html"> | |
<link rel="import" href="../core-icons/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#core_icon { | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
width: 100px; | |
height: 90px; | |
} | |
#core_drawer_panel { | |
position: absolute; | |
top: 60px; | |
right: 0px; | |
bottom: 0px; | |
left: 80px; | |
} | |
#section { | |
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px; | |
left: 290px; | |
top: -10px; | |
position: absolute; | |
background-color: rgb(250, 250, 250); | |
} | |
#section1 { | |
height: 100%; | |
box-sizing: border-box; | |
left: 20px; | |
top: -30px; | |
position: absolute; | |
background-color: rgb(221, 221, 221); | |
} | |
#paper_checkbox { | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#paper_checkbox1 { | |
left: 10px; | |
top: 0px; | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
} | |
#paper_button { | |
left: 0px; | |
top: 0px; | |
position: absolute; | |
} | |
#paper_fab { | |
left: 190px; | |
top: 550px; | |
position: absolute; | |
} | |
</style> | |
<core-drawer-panel transition selected="main" id="core_drawer_panel" touch-action> | |
<paper-checkbox label="click me" id="paper_checkbox"></paper-checkbox> | |
<core-icon icon="search" id="core_icon"></core-icon> | |
<paper-checkbox checked label="Undergraduates" id="paper_checkbox1"></paper-checkbox> | |
<section id="section" drawer> | |
<section id="section1" main></section> | |
<paper-button id="paper_button">button</paper-button> | |
<paper-fab icon="av:play-arrow" id="paper_fab"></paper-fab> | |
</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