Skip to content

Instantly share code, notes, and snippets.

@reedjones
Last active August 29, 2015 14:18
Show Gist options
  • Save reedjones/86a5b3cb15002a182497 to your computer and use it in GitHub Desktop.
Save reedjones/86a5b3cb15002a182497 to your computer and use it in GitHub Desktop.
designer
<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-progress/paper-progress.html">
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="kukto-player">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_button {
left: 120px;
top: 390px;
z-index: 2;
position: absolute;
}
#paper_icon_button {
left: 120px;
top: 90px;
z-index: 2;
position: absolute;
}
#paper_icon_button1 {
left: 870px;
z-index: 2;
top: 390px;
position: absolute;
}
#paper_icon_button2 {
left: 830px;
top: 390px;
z-index: 2;
position: absolute;
}
#paper_progress {
left: 290px;
z-index: 2;
top: 50px;
position: absolute;
}
.kuk-toolbar {
z-index: 2;
}
.kuk-frame {
position: relative;
top: 38px;
left: 178px;
z-index: 1;
height: 300px;
width: 800px;
background-color: rgb(173, 216, 230);
}
#div1 {
left: -60px;
top: 50px;
position: absolute;
}
</style>
<paper-icon-button icon="menu" id="paper_icon_button"></paper-icon-button>
<div id="div1" class="kuk-player">
<div id="div2" class="kuk-toolbar">
<paper-progress id="paper_progress"></paper-progress>
</div>
<div id="div" class="kuk-frame">
<content id="content" select="iframe"></content>
</div>
</div>
<paper-icon-button icon="menu" id="paper_icon_button1"></paper-icon-button>
<paper-icon-button icon="menu" id="paper_icon_button2"></paper-icon-button>
<paper-button id="paper_button">button</paper-button>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment