blob: f0c44b0d2dc578b586dd3c8a7d3df11c66314185 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<!DOCTYPE html>
<html>
<!-- NOTE
This page is the "skeleton" of rekonq info pages (eg: host not found page).
To let it work you need to set also some variables
about (prepend a $ to actually use them):
DEFAULT_PATH = rekonq default installation files path
PAGE_TITLE = page title
MAIN_CONTENT = page main content
...
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>$PAGE_TITLE</title>
<style type="text/css">
html{
margin:0;
padding:0;
}
@font-face {
font-family: 'Nunito';
src: url($DEFAULT_PATH/fonts/Nunito-Regular.ttf);
font-weight: normal;
font-style: normal;
}
body{
background: #AAA;
margin:0;
padding:0;
font-family: 'Nunito', sans-serif;
font-size: 0.9em;
}
#block {
background: #fff;
border: 2px solid #d9d9d9;
padding: 30px;
width: 800px;
margin: 30px auto;
color: #444;
-webkit-border-radius: 15px
}
h1{
font-size: 150%;
font-weight: bold;
text-align:center;
}
h2{
margin-top: 35px;
font-size: 130%;
font-weight: bold;
border-bottom: 1px solid lightgray;
}
ul {
padding: 12px 48px;
margin: 0;
}
a {
color: #3F7AB7;
text-decoration: none;
-webkit-transition: color 0.5s ease;
}
a:hover {
color: black;
}
</style>
</head>
<body>
<div id="block">$MAIN_CONTENT</div>
</body>
</html>
|