Skip to content

Instantly share code, notes, and snippets.

@atajwala
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atajwala/af069aad3472e90de793 to your computer and use it in GitHub Desktop.
Save atajwala/af069aad3472e90de793 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../speech-mic/speech-mic.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_card {
position: absolute;
width: 300px;
height: 500px;
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: 0px;
top: 0px;
background-color: rgb(255, 255, 255);
}
#core_input {
padding: 15px;
}
</style>
<core-card id="core_card" layout vertical>
<core-icon-button active icon="menu" id="core_icon_button" theme='core-light-theme","core-blue' class="selected"> Search Text...</core-icon-button>
<core-input willvalidate placeholder="Type something..." inputvalue="fgdfg" value="fgdfg" id="core_input"></core-input>
<speech-mic id="speech_mic"></speech-mic>
<paper-checkbox label="Choose please" id="paper_checkbox" horizontal layout start-justified></paper-checkbox>
</core-card>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment