Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Error Pages
3
***/
4
/* 404 page option #1 */
5
.page-404 {
6
  text-align: center;
7
}
8
 
9
.page-404 .number {
10
  position: relative;
11
  top: 35px;
12
  display: inline-block;
13
  letter-spacing: -10px;
14
  margin-top: 0px;
15
  margin-bottom: 10px;
16
  line-height: 128px;
17
  font-size: 128px;
18
  font-weight: 300;
19
  color: #7bbbd6;
20
  text-align: right;
21
}
22
 
23
.page-404 .details {
24
  margin-left: 40px;
25
  display: inline-block;
26
  padding-top: 0px;
27
  text-align: left;
28
}
29
 
30
/* 500 page option #1 */
31
.page-500 {
32
  text-align: center;
33
}
34
 
35
.page-500 .number {
36
  display: inline-block;
37
  letter-spacing: -10px;
38
  line-height: 128px;
39
  font-size: 128px;
40
  font-weight: 300;
41
  color: #ec8c8c;
42
  text-align: right;
43
}
44
 
45
.page-500 .details {
46
  margin-left: 40px;
47
  display: inline-block;
48
  text-align: left;
49
}
50
 
51
/* 404 page option #2*/
52
.page-404-full-page {
53
  overflow-x: hidden;
54
  padding: 20px;
55
  margin-bottom: 20px;
56
  background-color: #fafafa !important;
57
}
58
 
59
.page-404-full-page .details input {
60
  background-color: #ffffff;
61
}
62
 
63
.page-404-full-page .page-404 {
64
  margin-top: 100px;
65
}
66
 
67
/* 500 page option #2*/
68
.page-500-full-page {
69
  overflow-x: hidden;
70
  padding: 20px;
71
  background-color: #fafafa !important;
72
}
73
 
74
.page-500-full-page .details input {
75
  background-color: #ffffff;
76
}
77
 
78
.page-500-full-page .page-500 {
79
  margin-top: 100px;
80
}
81
 
82
/* 404 page option #3*/
83
.page-404-3 {
84
  background: #000 !important;
85
}
86
 
87
.page-404-3 .page-inner img {
88
  right: 0;
89
  bottom: 0;
90
  z-index: -1;
91
  position: absolute;
92
}
93
 
94
.page-404-3 .error-404 {
95
  color: #fff;
96
  text-align: left;
97
  padding: 70px 20px 0;
98
}
99
 
100
.page-404-3 h1 {
101
  color: #fff;
102
  font-size: 130px;
103
  line-height: 160px;
104
}
105
 
106
.page-404-3 h2 {
107
  color: #fff;
108
  font-size: 30px;
109
  margin-bottom: 30px;
110
}
111
 
112
.page-404-3 p {
113
  color: #fff;
114
  font-size: 16px;
115
}
116
 
117
@media (max-width: 480px) {
118
  .page-404 .number,
119
  .page-500 .number,
120
  .page-404 .details,
121
  .page-500 .details {
122
    text-align: center;
123
    margin-left: 0px;
124
  }
125
 
126
  .page-404-full-page .page-404 {
127
    margin-top: 30px;
128
  }
129
 
130
  .page-404-3 .error-404 {
131
    text-align: left;
132
    padding-top: 10px;
133
  }
134
 
135
  .page-404-3 .page-inner img {
136
    right: 0;
137
    bottom: 0;
138
    z-index: -1;
139
    position: fixed;
140
  }
141
}