e756a3fd0c
commit 5b7ac6f0f56f3888c01049f08b6b47dbeb3bcfb0 Author: Robin Linus <robin_woll@capira.de> Date: Wed Dec 30 18:06:48 2015 +0100 Clean up about and social links commit 9c7da37d1e8f58f1c45626289fbab336fc982a0f Author: Robin Linus <robin_woll@capira.de> Date: Wed Dec 30 18:06:35 2015 +0100 Change Slogan commit fcea5cfb5c6928acabce44caacc1d75fafdab447 Author: Robin Linus <robin_woll@capira.de> Date: Wed Dec 30 18:06:22 2015 +0100 Add shorturl commit f09e9e42c30aa7b26df2a5fb00bec653f3ad68e1 Author: Robin Linus <robin_woll@capira.de> Date: Wed Dec 30 16:56:55 2015 +0100 initial
41 lines
1 KiB
HTML
41 lines
1 KiB
HTML
<link rel="import" href="../../bower_components/iron-icon/iron-icon.html">
|
|
<link rel="import" href="../../styles/icons.html">
|
|
<dom-module id="personal-avatar">
|
|
<template>
|
|
<style>
|
|
:host {
|
|
@apply(--layout-vertical);
|
|
@apply(--layout-center);
|
|
width: 360px;
|
|
}
|
|
|
|
iron-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
color: #4285f4;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.paper-font-body1 {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.discover {
|
|
color: #4285f4;
|
|
}
|
|
</style>
|
|
<iron-icon icon="chat:wifi-tethering"></iron-icon>
|
|
<div class="paper-font-body1">
|
|
The easiest way to transfer files across devices.
|
|
</div>
|
|
<div class="paper-font-body1 discover">
|
|
Allow me to be discovered by: Everyone in this network.
|
|
</div>
|
|
</template>
|
|
<script>
|
|
'use strict';
|
|
Polymer({
|
|
is: 'personal-avatar'
|
|
});
|
|
</script>
|
|
</dom-module>
|