OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 | |
4 <head> | |
5 <style> | |
6 body { | |
7 font-family:'DejaVu Sans', Arial, sans-serif; | |
8 font-size: 14px; | |
9 } | |
10 | |
11 h1 { | |
12 font-weight:normal; | |
13 font-size:1em; | |
14 color:#111; | |
15 white-space:nowrap; | |
16 } | |
17 | |
18 .row, .icon, .name { | |
19 display:-webkit-box; | |
20 } | |
21 | |
22 .row { | |
23 -webkit-box-align:center; | |
24 color:#222; | |
25 margin-bottom:0.5em; | |
26 } | |
27 | |
28 .row.template { | |
29 display:none; | |
30 } | |
31 | |
32 .icon { | |
33 margin-right:1ex; | |
34 margin-bottom:1px; | |
35 } | |
36 </style> | |
37 </head> | |
38 <body> | |
39 | |
40 <h1></h1> | |
41 | |
42 <div class="row template"> | |
43 <img class="icon" width=16 height=16><div class="name"></div> | |
44 </div> | |
45 | |
46 <script src="popup.js"></script> | |
47 </body> | |
48 </html> | |
OLD | NEW |