"Text based game template"
Bootstrap 3.3.0 Snippet by dayo

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-12 user-stats">
<div class="well">
<h5>
<strong>Username: </strong>Dayo [1] <span class="label label-info">Admin</span>
</h5>
<h5>
<strong>Level: </strong>9000
</h5>
<h5>
<strong>Cash: </strong>$1,000,000
</h5>
<h5>
<strong>Premium Points: </strong>1,234
</h5>
<hr />
<h5>
<a href="#" class="pull-left">My Account</a>
<a href="#" class="pull-right">Logout</a>
<div class="clearfix"></div>
</h5>
</div>
</div>
<div class="col-md-6 col-xs-12 text-center page-header">
<h1 class="game-name">
Game Name
<small>Some slogan here</small>
</h1>
</div>
<div class="col-md-3 col-xs-12 user-stats">
<h5>Health</h5>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
.page-header {
border-bottom: none;
}
.game-name small {
display: block;
}
.user-stats hr {
margin: 10px;
}
.user-stats h5 {
margin-bottom: 0px;
}
.user-stats .well {
margin-top: 10px;
padding: 5px 10px;
}
.user-stats .progress .progress-bar {
text-align: left;
padding-left: 5px;
min-width: 20px;
}
.page-title {
margin-top: 0px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: