Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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