403.html 1.56 KB
  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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>403 Forbidden</title>

<link href="//cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
<style>
html {
height: 100%;
}

body {
height: 100%;
position: relative;
padding: 0;
background-color: #f6f6f6;
font-family: "Open Sans", sans-serif;
font-size: 12px;
color: #555;
margin-left: -20px;
}

body.texture {
background: url("/assets/images/bg.jpg");
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}

h2, h1:first-child {
margin-top: 0;
}

.wrapper {
display: table;
width: 100%;
position: absolute;
height: 100%;
padding-top: 50px;
margin-right: 15px;
margin-left: 15px;
}

.page-error {
margin-top: 50px;
margin-bottom: 40px;
}

.page-error .number {
color: #fff;
font-size: 150px;
font-family: Arial;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.page-error .description {
color: #fff;
font-size: 40px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.page-error h3 {
color: #fff;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.copy, .copy a {
color: #c9d4f6;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body class="gray-bg">
<div class="container">
<div class="page-error">
<h1 class="number text-center">403</h1>
<h2 class="description text-center">抱歉, 您没有权限访问该目录!</h2>
</div>
</div>
</body>
</html>