Last active
August 29, 2015 14:10
-
-
Save ericNeufeld/68fea73e6d4d61b04956 to your computer and use it in GitHub Desktop.
designer
This file contains 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="../cool-clock/cool-clock.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; | |
box-sizing: border-box; | |
} | |
#code_mirror { | |
width: 400px; | |
height: 300px; | |
left: 1290px; | |
top: 500px; | |
} | |
#cool_clock { | |
width: 400px; | |
height: 300px; | |
left: 810px; | |
top: 200px; | |
position: absolute; | |
border: black; | |
} | |
#google_map { | |
width: 400px; | |
height: 400px; | |
display: block; | |
left: 930px; | |
top: 550px; | |
position: absolute; | |
} | |
#cool_clock1 { | |
width: 400px; | |
height: 300px; | |
left: 1090px; | |
top: 370px; | |
position: absolute; | |
} | |
#cool_clock2 { | |
width: 30px; | |
height: 300px; | |
left: 1170px; | |
top: 450px; | |
position: absolute; | |
} | |
#cool_clock3 { | |
width: 400px; | |
height: 300px; | |
left: 1300px; | |
top: 480px; | |
} | |
#paper_input { | |
left: 790px; | |
top: 360px; | |
position: absolute; | |
width: 340px; | |
height: 90px; | |
} | |
</style> | |
<cool-clock id="cool_clock"></cool-clock> | |
<google-map id="google_map"></google-map> | |
<cool-clock id="cool_clock1"></cool-clock> | |
<cool-clock id="cool_clock2"></cool-clock> | |
<paper-input label="Type something..." id="paper_input"></paper-input> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element><cool-clock id="cool_clock3" class="drag-element"></cool-clock> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment