summaryrefslogtreecommitdiff
path: root/src/data/rekonqinfo.html
blob: 861b6f358081a9ea70b25a4bc6c50be176c2af09 (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
<!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
GENERAL_FONT = general font family
...

-->

<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;
}

body{
    background: url($DEFAULT_PATH/pics/background.png) repeat-y center #bbb;
    margin:0;
    padding:0;
    font-family: $GENERAL_FONT;
    font-weight: 500;
    font-size: 0.9em;
}

#block {
    background: rgba(255,255,255,0.75);
    padding: 30px;
    width: 800px;
    margin: 30px auto;
    color: #444;
    -webkit-border-radius: 15px;
    box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.9), 0px 0px 2px 0px rgba(0,0,0,0.9), 0px 0px 14px 0px #555;
}

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>