-
Notifications
You must be signed in to change notification settings - Fork 0
/
403.html
107 lines (90 loc) · 2.25 KB
/
403.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
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>403 (FORBIDDEN)</title>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato">
</head>
<style>
/* COLORS
https://www.google.com/design/spec/style/color.html#color-color-palette
Red
300 = #E57373;
500 = #F44336;
=================================== */
body {
background: #ef5350;
font-family: 'Lato', serif;
color: #fff;
margin: 0;
padding: 0;
}
.page-wrap {
margin: 0 auto;
width: 100%;
text-align: center;
}
p, a {
font-size: 1em;
}
h2, a {
text-transform: uppercase;
}
a {
color: #fff;
text-decoration: none;
font-weight: bold;
display: inline-block;
width: 88px;
height: 44px;
line-height: 44px;
border-radius: 5px;
border: 2px solid #fff;
transition: all .5s ease;
}
a:hover {
background: #E57373;
border: 2px solid #E57373;
width: 132px;
}
/* MEDIA QUERIES
================================================== */
/* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
@media (min-width:320px) {
h1 {font-size: 2em; }
h2 {font-size: 1.5em; }
}
/* smartphones, Android phones, landscape iPhone */
@media (min-width:480px) {
h1 {font-size: 3em; }
h2 {font-size: 1.75em; }
}
/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media (min-width:600px) {
h1 {font-size: 4em; }
h2 {font-size: 2em; }
}
/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (min-width:801px) {
h1 {font-size: 5em; }
h2 {font-size: 3em; }
}
/* big landscape tablets, laptops, and desktops */
@media (min-width:1025px) {
h1 {font-size: 6em; }
h2 {font-size: 4em; }
}
/* hi-res laptops and desktops */
@media (min-width:1281px) {
h1 {font-size: 7em; }
h2 {font-size: 5em; }
}
</style>
<body>
<div class="page-wrap">
<h1>403</h1>
<h2>forbidden</h2>
<p><a href="/">home</a></p>
</div>
</body>
</html>