2009-05-02 19:44:20 +00:00
|
|
|
<!--
|
|
|
|
Error page template for Midori.
|
|
|
|
This file is licensed under the terms of the expat license, see the file EXPAT.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>{title}</title>
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
background-color: #eee;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
|
|
|
background: #f6fff3;
|
|
|
|
min-width: 70%;
|
|
|
|
max-width: 70%;
|
|
|
|
margin: 2em auto 1em;
|
|
|
|
padding: 1em;
|
|
|
|
border: 0.2em solid #9acb7f;
|
|
|
|
-webkit-border-radius: 1em;
|
|
|
|
}
|
|
|
|
|
2009-05-09 21:40:25 +00:00
|
|
|
icon {
|
|
|
|
float: left;
|
|
|
|
padding-left: 1%;
|
|
|
|
padding-top: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
float: right;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2009-05-02 19:44:20 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 1.4em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
position: absolute; right: 15px; bottom: 15px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
2009-05-09 21:40:25 +00:00
|
|
|
button span,
|
|
|
|
button img {
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 2px 1px;
|
|
|
|
}
|
|
|
|
|
2009-05-02 19:44:20 +00:00
|
|
|
message {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
description {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2009-05-09 21:40:25 +00:00
|
|
|
<div id="container">
|
|
|
|
<img id="logo" src="{res}/logo-shade.png" />
|
|
|
|
<img id="icon" src="{stock}/gtk-dialog-error" />
|
|
|
|
<div id="main">
|
|
|
|
<h1>{title}</h1>
|
|
|
|
<p id="message">{message}</p>
|
|
|
|
<p id="description">{description}</p>
|
|
|
|
<form onsubmit="location.reload()">
|
|
|
|
<button>
|
|
|
|
<img src="{stock}/gtk-refresh"/>
|
|
|
|
<span>{tryagain}</span>
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<br style="clear: both;"/>
|
|
|
|
</div>
|
|
|
|
</body>
|
2009-05-02 19:44:20 +00:00
|
|
|
</html>
|