Browse Source

Whoa, there's two copies?

Not sure why there are two index.html files, but...
pull/38/head
Ben Ford 9 years ago
parent
commit
954a8287f8
  1. 15
      public/index.html

15
public/index.html

@ -14,6 +14,20 @@
width: 100%;
margin: 0px;
}
#overlay {
position: absolute;
height: 100%;
width: 100%;
background-color: rgba(0,0,0,0.75);;
display: none;
}
#overlay input {
display: block;
margin: auto;
position: relative;
top: 50%;
transform: translateY(-50%);
}
#terminal {
display: block;
position: relative;
@ -24,6 +38,7 @@
</head>
<body>
<div id="overlay"><input type="button" onclick="javascript:location.reload();" value="reconnect" /></div>
<div id="terminal"></div>
</body>

Loading…
Cancel
Save