MacViews: Get c/b/ui/views/tabs to build on Mac
[chromium-blink-merge.git] / third_party / polymer / components-chromium / core-style / my-theme.html
blob9dee3b72cf7fa8d620760bd43bb9e7dfb907619d
1 <link rel="import" href="core-style.html">
5 <core-style id="main">
6 body {
7 font-family: sans-serif;
10 section {
11 overflow: auto;
14 button {
15 border: 1px solid {{g.theme.colorOne | cycle(-50)}};
16 border-radius: 4px;
17 background-color: {{g.theme.colorOne}};
18 color: {{g.theme.colorTwo}};
21 button:active {
22 border: 1px solid {{g.theme.colorTwo | cycle(50)}};
23 border-radius: 4px;
24 background-color: {{g.theme.colorTwo}};
25 color: {{g.theme.colorOne}};
28 <template repeat="{{item in g.items}}">
29 my-panel:nth-of-type({{item+1}}) {
30 background-color: {{ g.theme.colorThree | cycle(item * -1) }};
32 </template>
33 </core-style>
35 <core-style id="my-toolbar">
36 :host {
37 border-bottom: 8px solid {{g.theme.colorOne}};
38 color: {{g.theme.colorOne | cycle(100)}};
39 background-color: {{g.theme.colorTwo}};
41 </core-style>
43 <core-style id="my-panel">
44 :host {
45 box-sizing: border-box;
46 background-color: {{g.theme.colorOne}};
47 border: 8px solid {{g.theme.colorOne | cycle(50)}};
48 color: {{g.theme.colorOne | cycle(-100)}};
51 :host(:nth-of-type(2n + 1)) {
52 background-color: {{g.theme.colorTwo}};
53 border: 8px solid {{g.theme.colorTwo | cycle(-50)}};
54 color: {{g.theme.colorTwo | cycle(100)}}
57 </core-style><script src="my-theme-extracted.js"></script>