-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
91 lines (89 loc) · 3.58 KB
/
game.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>
</html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Game Page</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style type="text/css" >
body {
margin-top: 10px;
margin-left: auto;
margin-right: auto;
width: 600px;
background-color: black;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color:black;
text-align: center;
background-image: url("star_night.jpg");
}
ul li a {
color: #666;
transition: .5s;
}
ul li a:before {
background: #d35400;
transition: .5s;
transform: scale(.9);
z-index: -1;
}
ul li a:hover:before {
transform: scale(1.2);
box-shadow: 0 0 15px #d35400;
filter: blur(3px);
}
ul li a:hover {
color: #ffa502;
box-shadow: 0 0 15px #d35400;
text-shadow: 0 0 15px #d35400;
}
</style>
<!-- Custom styles for this template -->
<link href="css/offcanvas.css" rel="stylesheet">
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.2/firebase-database.js"></script>
<script src="js/config.js"></script>
</head>
<body class=“container”>
<nav class="navbar navbar-expand-md fixed-top bg-dark navbar-dark">
<a class="navbar-brand" href="index.html">GT Forum </a>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="userpage1.html" id="userpage" >Post</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="profile.html">Profile</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="chat.html">Chat</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="canvas.html">Canvas</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="game.html">Game</a>
</li>
<li class="dropdown">
<a class="nav-link dropdown-toggle" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Account</a>
<div id="dynamic-menu" class="dropdown-menu" aria-labelledby="dropdown01">
<a class="dropdown-item" href="signin.html">Login</a>
</div>
</li>
</ul>
</nav>
<!-- animation -->
<!-- animation -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/offcanvas.js"></script>
<script src="js/game.js"></script>
</body>
</html>