forked from vishwapatel/BitsurfCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.html
More file actions
86 lines (76 loc) · 2.44 KB
/
status.html
File metadata and controls
86 lines (76 loc) · 2.44 KB
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
<html>
<head>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.2.1/pure-min.css">
<link rel="stylesheet" href="main.css">
<style type="text/css">
body {
width: 500px;
overflow: hidden;
}
p{
text-align: center;
}
.form-actions {
margin-top: 10px;
text-align: center;
}
.input-group {
padding-top: 10px;
}
.well {
padding: 2px;
background-color: #D48D42;
}
#logout {
cursor: pointer;
min-height:0px;
height: 30px;
}
#header {
min-height:0px;
height: 50px;
}
#content {
min-height:0px;
height: 90px;
float:left;
}
#logouttext {
cursor: pointer;
margin-top: 0.4em;
font-size: 1em;
}
.tightDash {
margin-top: 0.5em;
}
.tighterDash {
margin-top: 0.5em;
}
}
</style>
</head>
<body>
<div class="pure-u-1 dashboard-piece dashboard-piece-orangebg" id="header">
<div class="dashboard-content">
<p class="dashboard-metric tighterDash">bitSurf</p>
</div>
</div>
<div class="pure-u-1 dashboard-piece dashboard-piece-bluebg" id="content">
<div class="dashboard-content">
<p class="dashboard-metric tightDash" id = "acct_bal"></p>
</div>
</div>
<div class="pure-u-1 dashboard-piece dashboard-piece-graybg" id="logout">
<div class="dashboard-content">
<p class="dashboard-metric" id = "logouttext">Logout</p>
</div>
</div>
<footer>
Defu, Manosai, Matt, Vishwa
</footer>
</body>
<script src="jquery-2.0.3.js"></script>
<script src="bootstrap.js"></script>
<script src="status.js"></script>
</html>