3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9 --><html><head><link rel=
"import" href=
"core-style.html">
13 </head><body><core-style id=
"main">
15 font-family: sans-serif;
23 border:
1px solid {{g.theme.colorOne | cycle(-
50)}};
25 background-color: {{g.theme.colorOne}};
26 color: {{g.theme.colorTwo}};
30 border:
1px solid {{g.theme.colorTwo | cycle(
50)}};
32 background-color: {{g.theme.colorTwo}};
33 color: {{g.theme.colorOne}};
36 <template repeat=
"{{item in g.items}}">
37 my-panel:nth-of-type({{item+
1}}) {
38 background-color: {{ g.theme.colorThree | cycle(item * -
1) }};
43 <core-style id=
"my-toolbar">
45 border-bottom:
8px solid {{g.theme.colorOne}};
46 color: {{g.theme.colorOne | cycle(
100)}};
47 background-color: {{g.theme.colorTwo}};
51 <core-style id=
"my-panel">
53 box-sizing: border-box;
54 background-color: {{g.theme.colorOne}};
55 border:
8px solid {{g.theme.colorOne | cycle(
50)}};
56 color: {{g.theme.colorOne | cycle(-
100)}};
59 :host(:nth-of-type(
2n +
1)) {
60 background-color: {{g.theme.colorTwo}};
61 border:
8px solid {{g.theme.colorTwo | cycle(-
50)}};
62 color: {{g.theme.colorTwo | cycle(
100)}}
66 <script src=
"my-theme-extracted.js"></script></body></html>