Android Chromoting: Remove exit-fullscreen button.
[chromium-blink-merge.git] / third_party / polymer / components / paper-checkbox / demo.html
blob3de6844c29ef45ef60244345da3da07eda676cfc
1 <!--
2 @license
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 -->
10 <!doctype html>
11 <html>
12 <head>
13 <title>paper-checkbox</title>
15 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
16 <meta name="mobile-web-app-capable" content="yes">
17 <meta name="apple-mobile-web-app-capable" content="yes">
19 <script src="../webcomponentsjs/webcomponents.js"></script>
21 <link rel="import" href="paper-checkbox.html">
22 <link rel="import" href="../font-roboto/roboto.html">
23 <link rel="import" href="../core-label/core-label.html">
25 <style shim-shadowdom>
27 body {
28 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
29 margin: 0;
30 padding: 24px;
31 -webkit-tap-highlight-color: rgba(0,0,0,0);
32 -webkit-touch-callout: none;
35 paper-checkbox {
36 padding: 20px 20px 20px 0;
39 section {
40 width: 300px;
43 paper-checkbox.blue::shadow #ink[checked] {
44 color: #BBDEFB;
47 paper-checkbox.blue::shadow #checkbox.checked {
48 background-color: #2196F3;
49 border-color: #2196F3;
52 </style>
54 </head>
55 <body unresolved>
57 <section>
59 <core-label horizontal layout>
60 <paper-checkbox for></paper-checkbox>
61 <div vertical layout>
62 <h4>Notifications</h4>
63 <div>Notify me about updates to apps or games that I've downloaded</div>
64 </div>
65 </core-label>
67 <br>
69 <core-label horizontal layout>
70 <paper-checkbox checked for></paper-checkbox>
71 <div vertical layout>
72 <h4>Auto-updates</h4>
73 <div>Auto-update apps over wifi only</div>
74 </div>
75 </core-label>
77 <br>
79 <core-label horizontal layout>
80 <paper-checkbox for></paper-checkbox>
81 <div vertical layout>
82 <h4>Clear search history</h4>
83 <div>Remove all the searches you have ever performed</div>
84 </div>
85 </core-label>
87 <br>
89 <core-label horizontal layout>
90 <paper-checkbox for disabled checked></paper-checkbox>
91 <div vertical layout>
92 <h4>Use as default browser</h4>
93 </div>
94 </core-label>
96 <br>
98 <core-label horizontal layout>
99 <paper-checkbox for disabled></paper-checkbox>
100 <div vertical layout>
101 <h4>Allow in incognito</h4>
102 </div>
103 </core-label>
104 </section>
106 <br>
107 <br>
108 <br>
110 <section>
111 <h3>Sound</h3>
113 <core-label center horizontal layout>
114 <div flex>Touch sounds</div>
115 <paper-checkbox class="blue" checked for></paper-checkbox>
116 </core-label>
118 <core-label center horizontal layout>
119 <div flex>Screen lock sound</div>
120 <paper-checkbox class="blue" for></paper-checkbox>
121 </core-label>
123 <core-label center horizontal layout>
124 <div flex>Vibrate on touch</div>
125 <paper-checkbox class="blue" for></paper-checkbox>
126 </core-label>
127 </section>
129 </body>
130 </html>