Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
111 lines (88 loc) · 2.39 KB

File metadata and controls

111 lines (88 loc) · 2.39 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta charset="UTF-8">
<title>Page not found - Microsoft MakeCode</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
<style>
@targetstyle@
</style>
</head>
<body id='root' class='root'>
<style>
.lead {
margin-top: 2em;
}
.smile {
font-size: 200px;
line-height: 0.6em;
float: left;
margin-right: 70px;
margin-bottom: 100px;
margin-left: 50px;
display: none;
font-weight: 200;
color: #0091ff;
}
@media screen and (min-width: 768px) {
.smile {
display: block;
}
#root .jumbotron {
min-height: 20em;
margin-bottom: 8em;
}
}
.message {
opacity: 0.5;
font-size: 0.8em;
}
.message a {
color: #000;
}
body {
font-family: 'Segoe UI', "Helvetica Neue", Helvetica, Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
}
.main {
max-width: 700px;
margin: 4em auto;
}
</style>
<div class="ui main text container mainbody">
<div class="ui jumbotron">
<div class='smile'>
:(
</div>
<h1 dir="auto">Sorry, the page is missing</h1>
<p dir="auto" class='lead'>
You can go back to <a href="/">home page</a> or <a href="/contact">contact us</a>.
</p>
<p dir="auto" class="message">
<a href="#" id="more">More info</a>
</p>
<p dir="auto" id="msg" style="clear:both; display:none" class="message">
@-body-@
</p>
</div>
</div>
<script>
window.addEventListener("load", function () {
var more = document.getElementById("more");
var msg = document.getElementById("msg");
function show() {
msg.style.display = "block";
more.style.display = "none";
if (msg.textContent && msg.textContent.length < 200) {
msg.style.clear = "none";
}
}
//if (msg.textContent && msg.textContent.length < 100)
// show()
more.addEventListener("click", show);
});
</script>
<!-- @include tracking.html -->
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.