OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html id="template_root" i18n-values="dir:textdirection"> | 2 <html id="template_root" i18n-values="dir:textdirection"> |
3 <head> | 3 <head> |
4 <title i18n-content="title"></title> | 4 <title i18n-content="title"></title> |
5 <style> | 5 <style> |
6 body { | 6 body { |
7 font-family:arial; | 7 font-family:Helvetica,Arial,sans-serif; |
8 background-color:#FFCC00; | 8 background-color:#FFCC00; |
9 margin:0px; | 9 margin:0px; |
10 } | 10 } |
11 .background { | 11 .background { |
12 position:absolute; | 12 position:absolute; |
13 width:100%; | 13 width:100%; |
14 height:100%; | 14 height:100%; |
15 } | 15 } |
16 .cell { | 16 .cell { |
17 padding:20px; | 17 padding:20px; |
(...skipping 18 matching lines...) Expand all Loading... |
36 <p i18n-content="message"></p> | 36 <p i18n-content="message"></p> |
37 <ul style="list-style-type: none"> | 37 <ul style="list-style-type: none"> |
38 <li><a i18n-values="href: url" i18n-content="name" target="_blank"></a></l
i> | 38 <li><a i18n-values="href: url" i18n-content="name" target="_blank"></a></l
i> |
39 </ul> | 39 </ul> |
40 <p><a i18n-values="href: bypass" i18n-content="unblock"></a></p> | 40 <p><a i18n-values="href: bypass" i18n-content="unblock"></a></p> |
41 </div> | 41 </div> |
42 </td> | 42 </td> |
43 </table> | 43 </table> |
44 </body> | 44 </body> |
45 </html> | 45 </html> |
OLD | NEW |