blob: 028548aee11e5e728fcf032e388cb6939bb4c8d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!DOCTYPE html>
<html i18n-values="dir:textdirection">
<head>
<title i18n-content="title">
</title>
<style>
html {
height: 100%;
}
body {
color: #000;
font-family: Helvetica, Arial, sans-serif;
background-image: -webkit-linear-gradient(rgb(255, 255, 255) 50%,
rgb(236, 244, 255));
height: 100%;
padding: 0px;
margin: 0px;
}
#error {
position: absolute;
left: 180px;
top: 150px;
font-size: 24px;
}
#error img {
margin-right: 10px;
vertical-align: middle;
}
#name {
font-weight: bold;
}
#msg {
}
</style>
</head>
<body id="t">
<div id="error" jsvalues=".title:url">
<img jsvalues=".src:icon" width="96" height="96">
<div style="display:inline-block; vertical-align: middle;">
<div id="name" jsvalues=".innerText:name"></div>
<div id="msg" jsvalues=".innerText:msg"></div>
<div id="suggestions" jsselect="suggestionsLearnMore">
<span jsvalues=".innerHTML:msg"></span>
</div>
</div>
</div>
</body>
</html>
|