Last active
August 29, 2015 14:04
-
-
Save JovieBrett/e200a003b018f01568d2 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-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/iconsets/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; | |
opacity: 1; | |
top: 0px; | |
left: 0px; | |
background-color: rgb(227, 227, 227); | |
} | |
#core_submenu { | |
left: 1480px; | |
top: 780px; | |
} | |
#paper_fab { | |
left: 1220px; | |
top: 770px; | |
position: absolute; | |
} | |
#paper_checkbox { | |
left: 1450px; | |
top: 630px; | |
} | |
#section { | |
height: 1000px; | |
left: 100px; | |
top: 190px; | |
position: absolute; | |
background: linear-gradient(rgb(214, 227, 231), rgb(173, 216, 230)); | |
} | |
#core_card { | |
position: absolute; | |
width: 460px; | |
height: 360px; | |
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: 280px; | |
background-color: rgb(255, 255, 255); | |
} | |
#core_header_panel { | |
width: 1360px; | |
height: 880px; | |
left: -10px; | |
top: 0px; | |
position: absolute; | |
} | |
#core_toolbar { | |
color: rgb(255, 255, 255); | |
background-color: rgb(210, 63, 49); | |
} | |
#core_icon_button1 { | |
left: 1390px; | |
top: 580px; | |
} | |
</style> | |
<core-header-panel mode="standard" id="core_header_panel"> | |
<core-toolbar id="core_toolbar"> | |
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button> | |
<div id="div">Admission</div> | |
</core-toolbar> | |
</core-header-panel> | |
<paper-fab icon="core-icon:add" id="paper_fab"></paper-fab> | |
<b> | |
<b id="b"> | |
</b> | |
</b> | |
<section id="section"></section> | |
<core-card id="core_card"> | |
</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