-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermissions.html
102 lines (82 loc) · 3.06 KB
/
permissions.html
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
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Insufficient Permissions</title>
<link rel='stylesheet' href='css/fonts/opensans/stylesheet.css' type='text/css' charset='utf-8'>
<link rel='stylesheet' href='css/fonts/codelight/stylesheet.css' type='text/css' charset='utf-8'>
<link rel='shortcut icon' href='images/favicon_error_page.png' type='image/png'>
</head>
<style>
body
{
background: white;
margin-top: 150px;
}
h1
{
font: normal 30px 'Code Light', sans-serif;
}
h4
{
font: normal 18px 'Open Sans', sans-serif;
}
footer
{
margin: 100px 0px 0px 0px;
}
.returnButton
{
border: 1px solid #DCDCDC;
background: rgb(245,245,245); /* Old browsers */
background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(241,241,241,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,245,245,1)), color-stop(100%,rgba(241,241,241,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(241,241,241,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(241,241,241,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(241,241,241,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(245,245,245,1) 0%,rgba(241,241,241,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f1f1f1',GradientType=0 ); /* IE6-9 */
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
font: normal 13px 'Open Sans', sans-serif;
color: #424242;
padding: 5px 15px;
}
.returnButton:hover
{
background: rgb(248,248,248); /* Old browsers */
background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(241,241,241,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(248,248,248,1)), color-stop(100%,rgba(241,241,241,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(241,241,241,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(241,241,241,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%,rgba(241,241,241,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(248,248,248,1) 0%,rgba(241,241,241,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#f1f1f1',GradientType=0 ); /* IE6-9 */
cursor: pointer;
}
.returnButton:active
{
background: rgb(248, 248, 248);
opacity: 0.8;
}
</style>
<body ontouchstart=''>
<header>
<hgroup align='center'>
<h1>
Insufficient Permissions
</h1>
<h4>
You do not have sufficient permissions to access this page.
</h4>
</hgroup>
</header>
<footer align='center'>
<a href='../index'>
<button class='returnButton'>
Return to home
</button>
</a>
</footer>
</body>
</html>