-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.css
More file actions
139 lines (112 loc) · 2.44 KB
/
error.css
File metadata and controls
139 lines (112 loc) · 2.44 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
display: flex;
flex-direction: column;
box-sizing: border-box;
min-height: 100vh;
align-items: center;
justify-content: center;
background-size: 64px 32px;
background-repeat: repeat-x;
padding: 0;
background-color: #f9f9fa;
min-width: 13em;
font-family: Helvetica Neue, Verdana, Geneva, Tahoma, sans-serif;
}
@media only screen and (max-width: 959px) {
.title {
background-image: none !important;
padding-inline-start: 0;
margin-inline-start: 0;
}
.title-text {
padding-top: 0;
}
}
@media only screen and (max-width: 640px) {
body {
padding: 0 75px;
}
.title-text {
padding-bottom: 0;
border-bottom: none;
}
}
/* For small window height, shift the stripes up by 10px.
* We could just change the background size, but that changes
* the angle of the stripes so just shifting up is easier. */
@media only screen and (max-height: 480px) {
body {
background-position: 10px -10px;
padding-top: 38px;
/* We get rid of bottom padding for width < 640px, but
* for height < 480px a bit of space between the content
* and the viewport edge is nice. */
padding-bottom: 38px;
}
}
#errorContainer {
display: none;
}
#prefChangeContainer {
display: none;
}
#learnMoreContainer {
display: none;
}
span#hostname {
font-weight: bold;
}
#automaticallyReportInFuture {
cursor: pointer;
}
.illustrated #errorPageContainer {
min-height: 300px;
display: flex;
flex-direction: column;
background-position: left center;
}
.illustrated[dir="rtl"] #errorPageContainer {
background-position: right center;
}
.illustrated .title {
background: none;
padding-inline-start: 0;
margin-inline-start: 0;
}
.illustrated #text-container {
margin: auto;
padding-inline-start: 38%;
}
.illustrated #errorPageContainer {
background-repeat: no-repeat;
background-size: 38%;
background-image: url("error-connection-failure.svg");
}
h1 {
font-size: 2.5em;
font-weight: lighter;
line-height: 1.2;
margin: 0;
margin-bottom: .5em;
}
ul, ol {
margin: 1em 0;
padding: 0;
margin-inline-start: 2em;
}
ul > li, ol > li {
margin-bottom: .5em;
}
ul {
list-style: disc;
}
#errorLongDescCode {
font-size: 1.6em;
font-weight: 200;
}
#errorLongDescCode::after {
content: ""
}
#errorDescriptionShort {
font-weight: 300;
}