personal-avatar.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <link rel="import" href="../../bower_components/iron-icon/iron-icon.html">
  2. <link rel="import" href="../../styles/icons.html">
  3. <dom-module id="personal-avatar">
  4. <template>
  5. <style>
  6. :host {
  7. @apply(--layout-vertical);
  8. @apply(--layout-center);
  9. width: 360px;
  10. }
  11. iron-icon {
  12. width: 80px;
  13. height: 80px;
  14. color: #4285f4;
  15. margin-bottom: 6px;
  16. }
  17. .paper-font-body1 {
  18. font-size: 13px;
  19. }
  20. .discover {
  21. color: #4285f4;
  22. }
  23. @media all and (max-height: 370px) {
  24. iron-icon{
  25. width: 32px;
  26. height: 32px;
  27. }
  28. }
  29. </style>
  30. <iron-icon icon="chat:wifi-tethering"></iron-icon>
  31. <div class="paper-font-body1">
  32. The easiest way to transfer files across devices.
  33. </div>
  34. <div class="paper-font-body1 discover">
  35. Allow me to be discovered by: Everyone in this network.
  36. </div>
  37. </template>
  38. <script>
  39. 'use strict';
  40. Polymer({
  41. is: 'personal-avatar'
  42. });
  43. </script>
  44. </dom-module>