personal-avatar.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. </style>
  24. <iron-icon icon="chat:wifi-tethering"></iron-icon>
  25. <div class="paper-font-body1">
  26. The easiest way to transfer files across devices.
  27. </div>
  28. <div class="paper-font-body1 discover">
  29. Allow me to be discovered by: Everyone in this network.
  30. </div>
  31. </template>
  32. <script>
  33. 'use strict';
  34. Polymer({
  35. is: 'personal-avatar'
  36. });
  37. </script>
  38. </dom-module>