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
13 <title>core-range
</title>
15 <script src=
"../webcomponentsjs/webcomponents.js"></script>
17 <link rel=
"import" href=
"core-range.html">
18 <link rel=
"import" href=
"../core-input/core-input.html">
23 font-family: sans-serif;
31 <polymer-element name=
"x-progressbar" noscript
attributes=
"value min max">
40 background-color: #
555;
43 box-shadow: inset
0px
2px
5px rgba(
0,
0,
0,
0.5);
47 background-color: #
999;
50 box-shadow: inset
0 1px
0 rgba(
255,
255,
255,
0.5);
61 <core-range min=
"{{min}}" max=
"{{max}}" value=
"{{value}}" ratio=
"{{ratio}}"></core-range>
63 <div class=
"progress" horizontal center layout
_style=
"width: {{ratio}}%;">
64 <div class=
"progress-value">{{ratio}}%
</div>
71 <x-progressbar min=
"0" max=
"200" value=
"120"></x-progressbar>