Initial commit
14
app/assets/css/styles.css
Normal 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;
|
||||
}
|
||||
BIN
app/assets/fonts/Inconsolata-Bold.ttf
Normal file
BIN
app/assets/fonts/Inconsolata-Regular.ttf
Normal file
BIN
app/assets/fonts/ringbearer.ttf
Normal file
BIN
app/assets/images/BrownWithWignette.jpg
Normal file
|
After Width: | Height: | Size: 5.9 MiB |
BIN
app/assets/images/WCTextCream.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
app/assets/images/WesterosSealCircle.png
Normal file
|
After Width: | Height: | Size: 807 KiB |
BIN
app/assets/images/WesterosSealSquare.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
app/assets/images/facebook.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
app/assets/images/reddit.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
app/assets/images/twitter.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
app/assets/images/westeroscraftlogo1.png
Normal file
|
After Width: | Height: | Size: 606 KiB |
BIN
app/assets/images/westeroscraftlogo2.png
Normal file
|
After Width: | Height: | Size: 227 KiB |
8
app/assets/js/script.js
Normal 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();
|
||||
}
|
||||
});
|
||||