-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
68 lines (65 loc) · 1.78 KB
/
npm-debug.log
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
<html>
<head>
<style type="text/css">
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200italic);
html, body {
height: 100%;
}
body {
margin: 0;
font-family: 'Source Sans Pro', 'sans-serif';
background: #f8f8f8;
font-weight: 200;
}
a {
color: #0d90bb;
text-decoration: underline;
}
p {
font-size: 1em;
}
h1 {
font-size: 8em;
}
.flex-container {
height: 100%;
padding: 0;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
background: #f7f9ff;
}
.row {
width: auto;
border-radius: 2px;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
background-color: #fff;
}
.flex-item {
padding: 5px;
width: 300px;
margin: 10px;
line-height: 20px;
color: #0d90bb;
text-align: center;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="row">
<div class="flex-item"><h1>404</h1></div>
<div class="flex-item">
<p>The page you're looking for can't be found.</p>
<p><a href="http://www.duraamen.com.sites.glass">Go To Homepage</a></p>
<p>If you think this is an error, please contact <a href="mailto:[email protected]">Support</a></p>
</div>
</div>
</div>
</body>
</html>