OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>$i18n{headerText}</title> | |
5 | |
6 <link rel="import" href="chrome://resources/html/cr.html"> | |
7 <link rel="import" href="chrome://resources/html/load_time_data.html"> | |
8 <link rel="import" href="chrome://resources/html/polymer.html"> | |
9 <link rel="import" href="chrome://resources/html/util.html"> | |
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml"> | |
11 | |
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | |
13 <link rel="stylesheet" href="chrome://welcome-win10/welcome.css"> | |
14 | |
15 <script src="chrome://welcome-win10/welcome.js"></script> | |
16 <script src="chrome://welcome-win10/strings.js"></script> | |
17 </head> | |
18 <body> | |
19 <div class="content"> | |
20 <img src="logo4x.png" class="header-logo"> | |
21 <p class="heading">$i18n{headerText}</p> | |
22 <div class="subheading">$i18n{subheaderText}</div> | |
23 <div class="section section--expanded"> | |
tmartino
2016/10/12 22:06:40
What is the effect of using section and section--e
Patrick Monette
2016/10/13 21:30:05
The style for this unique section is the same as t
| |
24 <div class="section-heading"> | |
25 <p class="section-heading-text">$i18n{defaultBrowserSubheaderText}</p> | |
26 </div> | |
27 <ol class="section-steps"> | |
28 <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a></li> | |
29 <li> | |
30 <p id="section-steps--click-edge"> | |
31 </p> | |
32 <div class="screenshot-image screenshot-image--visible" id="screenshot -image--default"> | |
33 <div class="screenshot-html-overlay" id="screenshot-html-overlay--br owser"> | |
34 <p>$i18n{webBrowserLabel}</p> | |
35 </div> | |
36 <div class="screenshot-html-overlay" id="screenshot-html-overlay--ed ge"> | |
37 <p>$i18n{microsoftEdgeLabel}</p> | |
38 </div> | |
39 </div> | |
40 </li> | |
41 <li id="section-steps--select-chrome"></li> | |
42 </ol> | |
43 </div> | |
44 <a href="#" class="button" id="continue-button">$i18n{continueText}</a> | |
45 </div> | |
46 | |
47 </body> | |
48 </html> | |
OLD | NEW |