Last active
August 29, 2015 14:12
-
-
Save inbasic/87f38e79a589095b1526 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 href="../notification-elements/notification-alert.html" rel="import"> | |
<link href="../yt-video/yt-search-video.html" rel="import"> | |
<link href="../core-icon-button/core-icon-button.html" rel="import"> | |
<link href="../topeka-elements/category-images.html" rel="import"> | |
<link href="../core-icon/core-icon.html" rel="import"> | |
<link href="../core-icons/core-icons.html" rel="import"> | |
<link href="../core-icons/av-icons.html" rel="import"> | |
<link href="../paper-fab/paper-fab.html" rel="import"> | |
<link href="../ace-element/ace-element.html" rel="import"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#design_host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#ace_element { | |
width: 700px; | |
height: 560px; | |
left: 200px; | |
top: 110px; | |
position: absolute; | |
} | |
#notification_alert { | |
left: 900px; | |
top: 410px; | |
position: absolute; | |
} | |
#notification_alert1 { | |
left: 750px; | |
top: 470px; | |
position: absolute; | |
} | |
#notification_alert2 { | |
left: 800px; | |
top: 460px; | |
position: absolute; | |
} | |
#yt_search_video1 { | |
width: 300px; | |
height: 300px; | |
left: 650px; | |
top: 50px; | |
position: absolute; | |
} | |
#core_icon_button { | |
left: 220px; | |
top: 50px; | |
position: absolute; | |
} | |
#section { | |
box-sizing: border-box; | |
width: 420px; | |
height: 582px; | |
left: 270px; | |
top: 100px; | |
position: absolute; | |
} | |
#section1 { | |
background-color: rgb(255, 255, 141); | |
} | |
#core_icon { | |
height: 256px; | |
width: 256px; | |
z-index: 100; | |
} | |
#div { | |
box-sizing: border-box; | |
position: relative; | |
height: 80px; | |
background-color: rgb(255, 235, 59); | |
padding: 24px; | |
color: rgb(255, 255, 255); | |
font-size: 32px; | |
} | |
#div2 { | |
position: absolute; | |
color: rgb(255, 255, 255); | |
bottom: 50px; | |
right: 24px; | |
} | |
#paper_fab { | |
background-color: rgb(255, 64, 129); | |
} | |
</style> | |
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert"></notification-alert> | |
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert1"></notification-alert> | |
<notification-alert message="Hi there!" icon="icon.png" name="notification" id="notification_alert2"></notification-alert> | |
<yt-search-video id="yt_search_video1"></yt-search-video> | |
<core-icon-button icon="menu" id="core_icon_button" theme="core-light-theme"></core-icon-button> | |
<section id="section" vertical layout> | |
<section id="section1" hero-id="top" hero center-justified center horizontal layout flex class="top"> | |
<core-icon icon="category-images:knowledge" id="core_icon" designmeta="topeka-image" cross-fade-delayed></core-icon> | |
</section> | |
<div id="div" hero-id="bottom" hero class="bottom"> | |
<span id="span">General Knowledge</span> | |
</div> | |
<div id="div1" class="dummy" hero></div> | |
<div id="div2" class="fab fab-0"> | |
<paper-fab icon="av:play-arrow" id="paper_fab" cross-fade-delayed></paper-fab> | |
</div> | |
</section> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element><ace-element id="ace_element" class="drag-element">function test() { | |
var x = true; | |
}</ace-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment