Initial commit

This commit is contained in:
Daniel Scalzi
2017-04-22 17:20:23 -04:00
commit acffbec100
19 changed files with 105 additions and 0 deletions

14
app/assets/css/styles.css Normal file
View File

@@ -0,0 +1,14 @@
@font-face {
font-family: ringbearer;
src: url('../fonts/ringbearer.ttf');
}
body, html {
margin: 0px;
padding: 0px;
}
html {
background: url(../images/BrownWithWignette.jpg) no-repeat center center fixed;
background-size: cover;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 807 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 KiB

8
app/assets/js/script.js Normal file
View File

@@ -0,0 +1,8 @@
const remote = require('electron').remote;
document.addEventListener("keydown", function (e) {
if (e.keyCode === 123) { // F12
var window = remote.getCurrentWindow();
window.toggleDevTools();
}
});