Skip to content

Commit

Permalink
Deploy jmmv/endbasic to github.com/jmmv/endbasic.git:gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
traviscibot committed Jul 16, 2020
0 parents commit 939c602
Show file tree
Hide file tree
Showing 8 changed files with 763 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
91 changes: 91 additions & 0 deletions 0.bootstrap.js

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions 1.bootstrap.js

Large diffs are not rendered by default.

Binary file added 2622f03ce41ba9301a5d.module.wasm
Binary file not shown.
357 changes: 357 additions & 0 deletions bootstrap.js

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions index.html
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>EndBASIC</title>
<link rel="stylesheet" href="node_modules/xterm/css/xterm.css" />
<link rel="stylesheet" href="style.css" />

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167981243-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-167981243-1');
</script>
</head>

<body>
<div id="terminal">
<noscript>Javascript is required for this site.</noscript>
</div>

<footer>
<a href="https://github.com/jmmv/endbasic">EndBASIC</a>&nbsp;
(<span id="build-id"></span>)&nbsp;&middot;&nbsp;
<a id="report-issue" href="https://github.com/jmmv/endbasic/issues/new">Report
an issue</a>
</footer>

<script src="bootstrap.js"></script>
</body>
</html>
171 changes: 171 additions & 0 deletions node_modules/xterm/css/xterm.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions style.css
@@ -0,0 +1,61 @@
/*
* EndBASIC
* Copyright 2020 Julio Merino
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/

html {
height: 100%;
}

body {
background-color: #000000;
display: flex;
flex-direction: column;
height: 100%;
margin: 0;
width: 100%;
}

body > * {
flex-shrink: 0;
}

footer {
background-color: purple;
color: white;
font-family: Arial;
font-size: 10pt;
height: 25pt;
padding-right: 10pt;
padding-left: 10pt;

display: flex;
align-items: center;
justify-content: left;
}

footer a {
color: white;
}

#terminal {
flex-grow: 1;
overflow: hidden;
padding: 20pt;
}

#terminal .xterm-viewport {
visibility: hidden;
}

0 comments on commit 939c602

Please sign in to comment.