-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.css
More file actions
42 lines (36 loc) · 741 Bytes
/
error.css
File metadata and controls
42 lines (36 loc) · 741 Bytes
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
/* 404s etc */
html {
background: #1b1b1b;
}
#error {
margin: 0;
position: fixed;
top: 35%;
display: block;
width: 100%;
min-width: 400px;
font: bold 12pt Open Sans, Droid Sans, Noto Sans, Ubuntu, Segoe UI, Lucida Grande, sans-serif;
border-top: 1px solid #510;
border-bottom: 1px solid #510;
box-shadow: 0 0 2px 2px #111;
background: #555 url(resources/rat.png) right 10px bottom no-repeat;
background-size: auto 80px;
}
.error {
padding: 40px 25px 40px 86px;
color: #ddd;
text-shadow: 0 1px 1px #111;
background: url(resources/error.png) 25px center no-repeat;
}
a, a:visited {
outline: none;
color: #610;
text-decoration: none;
text-shadow: none;
}
a:hover, a:focus {
color: #d10;
}
a:active {
color: #f10;
}