-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d64e33
commit 18eda0f
Showing
6 changed files
with
415 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>Our Funky HTML Page</title> | ||
<meta name="description" content="Our first page"> | ||
<meta name="keywords" content="html tutorial template"> | ||
</head> | ||
<body> | ||
<p>V0.1 Initial</p> | ||
<p>V0.1b bugfixx</p> | ||
<p>v0.1c fixed bicycle</p> | ||
<p>v0.2 | ||
<br> -sprite change sync | ||
<br> -fix diagonal movement</p> | ||
<p>v0.3 | ||
<br> -chat (no nicknames)</p> | ||
<p>v0.31 | ||
<br> | ||
-layout | ||
<p>v.032 | ||
<br> -chat nicknames</p> | ||
<p>Press 3 to hide/show the connection status window</p> | ||
<p><a href="play.html">Enter</a></p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#game_frame { | ||
display: block; | ||
width: 100%; | ||
height: 480px; | ||
margin: 0 auto; | ||
} | ||
|
||
#chatbox { | ||
height: 617px; | ||
} | ||
|
||
#messages { | ||
margin-right: 1px; | ||
width: 283px; | ||
height: 70%; | ||
border: 2px solid black; | ||
overflow-y: auto; | ||
} | ||
|
||
#chatInputContainer { | ||
width: auto; | ||
height: 26px; | ||
margin-right: 1px; | ||
margin-top: 2px; | ||
margin-bottom: 5px; | ||
} | ||
|
||
#chatInput { | ||
width: -webkit-calc(100% - 7px); | ||
width: -moz-calc(100% - 7px); | ||
width: calc(100% - 7px); | ||
height: 26px; | ||
border: 1px solid black; | ||
} | ||
|
||
#enterNameContainer { | ||
margin-right: 1px; | ||
width: auto; | ||
height: auto; | ||
border: 2px solid black; | ||
} | ||
|
||
.message { | ||
word-wrap: break-word; | ||
border: 1px solid #b0b0b0; | ||
} | ||
|
||
table, tr, td { | ||
border: 1px solid black; | ||
} | ||
|
||
table { | ||
width: 1000px; | ||
margin: 0 auto; | ||
height: 623px; | ||
} |
Oops, something went wrong.