blob: ea91b453c50ffe64f720b268bd73aca45678cd6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<!doctype html>
<!--
Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<title>core-icons</title>
<script src="../platform/platform.js"></script>
<!-- load default set -->
<link rel="import" href="core-icons.html">
<!-- load the rest -->
<link rel="import" href="av-icons.html">
<link rel="import" href="communication-icons.html">
<link rel="import" href="device-icons.html">
<link rel="import" href="editor-icons.html">
<link rel="import" href="hardware-icons.html">
<link rel="import" href="image-icons.html">
<link rel="import" href="maps-icons.html">
<link rel="import" href="notification-icons.html">
<link rel="import" href="social-icons.html">
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial;
}
h2 {
text-transform: capitalize;
}
core-icon {
transition: all 0.2s;
-webkit-transition: all 0.2s;
}
core-icon:hover {
fill: #fb8c00;
}
.set {
padding: 1em 0;
border-bottom: 1px solid silver;
}
.set:nth-of-type(4n-3) {
color: #656565;
}
.set:nth-of-type(4n-2) {
color: #FDD835;
}
.set:nth-of-type(4n-1) {
color: #0D904F;
}
.set:nth-of-type(4n) {
color: #3B78E7;
}
.container {
min-width: 10em;
padding: 1em;
}
.container > div {
color: black;
}
</style>
</head>
<body unresolved>
<template is="auto-binding">
<template repeat="{{iconset in $.meta.metaArray}}">
<h2>{{iconset.id}}</h2>
<h5>{{iconset.id === 'icons' ? 'The Default Set' : 'Import ' + iconset.id + '-icons.html'}}</h5>
<div class="set" horizontal wrap justified layout>
<template repeat="{{ icon in iconset.iconNames }}">
<span class="container" vertical center layout>
<core-icon icon="{{ iconset.id }}:{{ icon }}"></core-icon>
<div>{{ icon }}</div>
</span>
</template>
</div>
</template>
<core-iconset id="meta"></core-iconset>
</template>
</body>
</html>
|