-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.css
40 lines (40 loc) · 866 Bytes
/
error.css
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
body{
background-image: url('../graphics/background.jpg');
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
overflow:hidden;
}
#errorForm{
display: float;
background-color: #1A1A1A;
width: 50%;
margin-left: 30px;
margin-top: 50px;
box-shadow: 1px 1px 1px yellow, 0 0 25px red, 0 0 3px orange;
opacity: 0.8;
filter: alpha(opacity=80);
}
#errorHeader{
padding:15px;
text-decoration: none;
text-transform: uppercase;
text-shadow: 2px 2px 5px red;
display: block;
font-weight: bold;
color: orange;
}
#errorList{
margin-bottom: 10px;
padding:5px;
font-size: 17px;
margin: 20px;
text-shadow: 2px 2px 5px skyblue;
display: block;
font-weight: bold;
color: white;
}
#noscroll {overflow: hidden;}