forked from jkpr/clueless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (88 loc) · 4.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>game-instance</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/game-play.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header"><a class="navbar-brand navbar-link" href="#"><i class="glyphicon glyphicon-pawn"></i> Clue-Less</a>
<button class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button>
</div>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav navbar-right">
<li class="active" role="presentation"><a href="#">End Game</a></li>
<li role="presentation"><a href="#">Profile </a></li>
<li role="presentation"><a href="#">Sign Out</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron hero">
<div class="outer-opacity-filter">
<div class="container-fluid">
<div class="row">
<div class="col-md-3 chat-container">
<h1 class="text-center notes-heading">Chat </h1>
<div class="mr-boddy-mockup">
<div id="chatControls">
<input id="message" placeholder="Type your message">
<button id="send">Send</button>
</div>
<ul id="userlist"> <!-- Built by JS --> </ul>
<div id="chat"> <!-- Built by JS --> </div>
</div>
</div>
<div class="col-md-6 col-md-pull-3 game game-container">
<div class="board-img-container"><img src="assets/img/board-grid.png"></div>
<p><a class="btn btn-primary btn-lg" role="button" href="#">Move </a><a class="btn btn-success btn-lg" role="button" href="#">Disprove </a><a class="btn btn-primary btn-lg" role="button" href="#">Suggest </a><a class="btn btn-success btn-lg"
role="button" href="#">Accuse </a><a class="btn btn-primary btn-lg" role="button" href="#">End Turn</a></p>
</div>
<div class="col-lg-2 col-md-2 game game-notes-container">
<h1 class="text-center notes-heading">Game Notes</h1><img src="assets/img/game-notes.png" width="100%"></div>
</div>
</div>
</div>
</div>
<section class="rules">
<h2 class="text-center"><em>[Might put rules here]</em></h2></section>
<section class="features">
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>Clue-Less</h2>
<p>Game developed by James Pringle, Christopher Chang, Ibrahim Salla, and Federico Esparza, as a team project in the Fall 2016 semester of Johns Hopkins University graduate level course: Foundations of Software Engineering</p>
</div>
<div class="col-md-6">
<div class="row icon-features">
<div class="col-xs-4 icon-feature"><i class="glyphicon glyphicon-cloud"></i>
<p>Heroku Deployed</p>
</div>
<div class="col-xs-4 icon-feature"><i class="fa fa-github-alt glyphicon"></i>
<p>Github Repo</p>
</div>
<div class="col-xs-4 icon-feature"><i class="glyphicon glyphicon-education"></i>
<p>Johns Hopkins University Software Engineering</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h5>BoddyBuilders © 2016</h5></div>
</div>
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>