-
Notifications
You must be signed in to change notification settings - Fork 0
/
2013.bib
187 lines (139 loc) · 3.65 KB
/
2013.bib
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page not found</title>
<style>
html {
height: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
}
body {
overflow-y: scroll;
margin: 0;
flex: 1 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #464646;
font-family: Arial, 'Arial', Helvetica, sans-serif;
font-size: 14px;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.main-container {
max-width: 1000px;
width: 100%;
flex: 1 0 auto;
flex-direction: column;
padding: 0 20px;
box-sizing: border-box;
margin: 70px 0;
}
.exclamation-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}
.content-wrapper {
min-height: 231px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
}
h1 {
margin: 0;
padding: 0;
text-align: center;
font-weight: bold;
font-size: 36px;
line-height: 41px;
}
p {
margin: 0;
line-height: 21px;
text-align: center;
}
a {
color: #C74D5A;
text-decoration: none;
white-space: nowrap;
}
a:visited {
color: #C74D5A;
}
.light-text {
color: #717171;
}
.medium-text {
font-size: 16px;
line-height: 21px;
}
.error-description {
margin: 10px 0;
}
.error-code {
font-weight: bold;
line-height: 16px;
}
.error-reason {
max-width: 628px;
margin: 59px 0;
text-align: center;
}
footer {
max-width: 628px;
width: 100%;
flex-wrap: wrap;
padding-top: 20px;
border-top: 1px solid #DDDDDD;
}
.footer-link-wrapper {
position: relative;
padding: 0 7px;
}
.footer-link-wrapper:not(:last-of-type)::after {
position: absolute;
right: 0;
content: "";
display: block;
border-right: 1px solid #DDDDDD;
height: 14px;
}
footer a {
padding: 0 7px;
min-height: 24px;
}
</style>
</head>
<body>
<div class="main-container flex-center">
<div class="exclamation-wrapper">
<svg width="12" height="68" viewBox="0 0 12 68" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 0C1.34277 0 0 1.34375 0 3V46C0 47.6562 1.34277 49 3 49H9C10.6572 49 12 47.6562 12 46V3C12 1.34375 10.6572 0 9 0H3ZM3 56C1.34277 56 0 57.3438 0 59V65C0 66.6562 1.34277 68 3 68H9C10.6572 68 12 66.6562 12 65V59C12 57.3438 10.6572 56 9 56H3Z" fill="#464646"/>
</svg>
</div>
<div class="content-wrapper">
<h1>the page cannot be found</h1>
<div class="error-description">
<p>The page you are looking for does not exist</p>
<p>or has been removed</p>
</div>
</div>
<footer class="flex-center">
<span class="footer-link-wrapper flex-center">
<a class="flex-center" href="https://repository.lincoln.ac.uk/">Go to homepage</a>
</span>
</footer>
</div>
</body>
</html>