Subversion-Projekte lars-tiefland.ci

Revision

Revision 1 | Details | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
defined('BASEPATH') OR exit('No direct script access allowed');
3
?><!DOCTYPE html>
4
<html lang="en">
5
<head>
6
<meta charset="utf-8">
7
<title>Error</title>
8
<style type="text/css">
9
 
10
::selection { background-color: #E13300; color: white; }
11
::-moz-selection { background-color: #E13300; color: white; }
12
 
13
body {
14
	background-color: #fff;
15
	margin: 40px;
16
	font: 13px/20px normal Helvetica, Arial, sans-serif;
17
	color: #4F5155;
18
}
19
 
20
a {
21
	color: #003399;
22
	background-color: transparent;
23
	font-weight: normal;
24
}
25
 
26
h1 {
27
	color: #444;
28
	background-color: transparent;
29
	border-bottom: 1px solid #D0D0D0;
30
	font-size: 19px;
31
	font-weight: normal;
32
	margin: 0 0 14px 0;
33
	padding: 14px 15px 10px 15px;
34
}
35
 
36
code {
37
	font-family: Consolas, Monaco, Courier New, Courier, monospace;
38
	font-size: 12px;
39
	background-color: #f9f9f9;
40
	border: 1px solid #D0D0D0;
41
	color: #002166;
42
	display: block;
43
	margin: 14px 0 14px 0;
44
	padding: 12px 10px 12px 10px;
45
}
46
 
47
#container {
48
	margin: 10px;
49
	border: 1px solid #D0D0D0;
50
	box-shadow: 0 0 8px #D0D0D0;
51
}
52
 
53
p {
54
	margin: 12px 15px 12px 15px;
55
}
56
</style>
57
</head>
58
<body>
59
	<div id="container">
60
		<h1><?php echo $heading; ?></h1>
61
		<?php echo $message; ?>
62
	</div>
63
</body>
64
</html>