OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Settings</title> | 5 <title>Settings</title> |
6 <link rel="import" | 6 <link rel="import" |
7 href="chrome://resources/cr_elements/cr_checkbox/cr_checkbox.html"> | 7 href="chrome://resources/cr_elements/cr_checkbox/cr_checkbox.html"> |
8 <link rel="import" | 8 <link rel="import" |
9 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm
l"> | 9 href="chrome://resources/cr_elements/cr_toggle_button/cr_toggle_button.htm
l"> |
| 10 <link rel="import" href="chrome://resources/cr_elements/cr_button/cr_button.ht
ml"> |
10 <link rel="import" | 11 <link rel="import" |
11 href="chrome://resources/polymer/paper-button/paper-button.html"> | 12 href="chrome://resources/polymer/paper-button/paper-button.html"> |
| 13 <link rel="stylesheet" href="md_settings.css"> |
12 </head> | 14 </head> |
13 <body> | 15 <body> |
14 <header> | 16 <header> |
15 <h1>Settings</h1> | 17 <h1>Settings</h1> |
16 </header> | 18 </header> |
17 <div class="main"> | 19 <div class="main"> |
18 <paper-button id="manage-button" raised>Manage</paper-button> | 20 <section> |
19 <cr-toggle-button checked></cr-toggle-button> | 21 <h3>cr-toggle-button</h3> |
20 <cr-checkbox checked></cr-checkbox> | 22 <cr-toggle-button></cr-toggle-button> |
| 23 <cr-toggle-button checked></cr-toggle-button> |
| 24 </section> |
| 25 <section> |
| 26 <h3>cr-checkbox</h3> |
| 27 <cr-checkbox></cr-checkbox> |
| 28 <cr-checkbox checked></cr-checkbox> |
| 29 </section> |
| 30 <section> |
| 31 <h3>cr-button</h3> |
| 32 <cr-button>Flat button</cr-button> |
| 33 <cr-button raised>Raised Button</cr-button> |
| 34 </section> |
21 </div> | 35 </div> |
22 </body> | 36 </body> |
23 </html> | 37 </html> |
OLD | NEW |