error.css
2.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* Cubic Bezier Transition */
/***
Error Pages
***/
/* 404 page option #1 */
.page-404 {
text-align: center; }
.page-404 .number {
position: relative;
top: 35px;
display: inline-block;
letter-spacing: -10px;
margin-top: 0px;
margin-bottom: 10px;
line-height: 128px;
font-size: 128px;
font-weight: 300;
color: #7bbbd6;
text-align: right; }
.page-404 .details {
margin-left: 40px;
display: inline-block;
padding-top: 0px;
text-align: left; }
/* 500 page option #1 */
.page-500 {
text-align: center; }
.page-500 .number {
display: inline-block;
letter-spacing: -10px;
line-height: 128px;
font-size: 128px;
font-weight: 300;
color: #ec8c8c;
text-align: right; }
.page-500 .details {
margin-left: 40px;
display: inline-block;
text-align: left; }
/* 404 page option #2*/
.page-404-full-page {
overflow-x: hidden;
padding: 20px;
margin-bottom: 20px;
background-color: #fafafa !important; }
.page-404-full-page .details input {
background-color: #ffffff; }
.page-404-full-page .page-404 {
margin-top: 100px; }
/* 500 page option #2*/
.page-500-full-page {
overflow-x: hidden;
padding: 20px;
background-color: #fafafa !important; }
.page-500-full-page .details input {
background-color: #ffffff; }
.page-500-full-page .page-500 {
margin-top: 100px; }
/* 404 page option #3*/
.page-404-3 {
background: #000 !important; }
.page-404-3 .page-inner img {
right: 0;
bottom: 0;
z-index: -1;
position: absolute; }
.page-404-3 .error-404 {
color: #fff;
text-align: left;
padding: 70px 20px 0; }
.page-404-3 h1 {
color: #fff;
font-size: 130px;
line-height: 160px; }
.page-404-3 h2 {
color: #fff;
font-size: 30px;
margin-bottom: 30px; }
.page-404-3 p {
color: #fff;
font-size: 16px; }
@media (max-width: 480px) {
.page-404 .number,
.page-500 .number,
.page-404 .details,
.page-500 .details {
text-align: center;
margin-left: 0px; }
.page-404-full-page .page-404 {
margin-top: 30px; }
.page-404-3 .error-404 {
text-align: left;
padding-top: 10px; }
.page-404-3 .page-inner img {
right: 0;
bottom: 0;
z-index: -1;
position: fixed; } }