-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinecraftRooms.html
More file actions
155 lines (131 loc) · 4.47 KB
/
MinecraftRooms.html
File metadata and controls
155 lines (131 loc) · 4.47 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<html translate="no">
<head>
<title>Minecraft World Community - Minecraft Rooms</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-database.js"></script>
<script defer src="rooms.js"></script>
<script src="infobox/infoBox.js"></script>
<link rel="stylesheet" href="infobox/infoBoxStyle.css">
<link rel="icon" type="image/png" href="MinecraftLogo.jpg" />
<link rel="stylesheet" href="geral.css">
<style>
@font-face {
font-family: Minecraft;
src: url(Minecraft.ttf);
}
body {
background-color: rgb(144, 245, 206);
background-image: url("MinecraftWorld.png");
background-position: center;
background-size: 1500px;
background-repeat: repeat-y;
}
#logo {
width: 100%;
height: 32%;
border-style: ridge;
border-width: 2px;
border-color: chartreuse;
}
#MainBar {
background-image: url("TopBar.jpg");
background-position: center;
background-size: 500px;
background-repeat: repeat-x;
width: 100%;
height: 80px;
border-bottom: 6px ridge green;
}
#MainBar label {
color: cyan;
font-family: Minecraft;
}
#UserDiv {
width: 300px;
height: 75px;
}
#Exit {
z-index: 2;
top: 20%;
right: 30px;
color: red;
border-style: outset;
border-width: 2px;
border-color: red;
background-color: rgba(51, 22, 8, 0.027);
position: absolute;
}
p,
label,
h3 {
color: white;
}
.MCButton {
border: 5px green ridge;
border-radius: 0%;
height: 40px;
}
.TopButton {
float: right;
background-color: rgba(0, 0, 0, 0.500);
color: aliceblue;
}
.roomName {
cursor: pointer;
font-size: 20px;
font-family: Minecraft;
width: 360px;
background-color: rgba(100, 148, 237, 0.274);
padding: 5px;
border-style: ridge;
border-width: 6px;
border-color: rgba(0, 128, 0, 0.555);
color: rgba(0, 231, 0, 0.555);
}
.roomName:hover {
font-size: 25px;
padding: 7px;
width: 1300px;
box-shadow: 5px 5px 5px green;
}
.mc-do-button {
color: aliceblue;
height: 40px;
border: 5px ridge green;
background-color: cadetblue;
}
.MCInput {
background-color: chartreuse;
border: outset rgba(0, 0, 0, 0.500) 2px;
height: 40px;
color: aliceblue;
margin: 5px;
}
</style>
</head>
<body onload="loadUser()">
<div id="infoBox"></div>
<img src="MinecraftSitesLogo.png" id="Logo" title="MINECRAFT WORLD COMMUNITY">
<button id="Exit" onclick="logout()">Log-Out</button>
<br>
<div id="MainBar">
<div>
<button class="MCButton TopButton" onclick="userUi()">Users</button>
<button class="MCButton TopButton" onclick="showOptions(2)">Add Room</button>
<button class="MCButton TopButton" onclick="showOptions(1)">Search Room</button>
</div>
<div title="user" id="UserDiv"
style="padding: 10px;background-color: rgba(0, 0, 0, 0.500);border: 2px ridge cyan;"><br><img
id="userPicture" src="UserCreeper.png" width="30px" height="30px"><label id="userName"></label><br>
</div>
</div>
<div id="RoomOptions">
</div>
<hr>
<h3 class="color_white">Minecraft Rooms</h3>
<div id="output" title="Minecraft Community Rooms"></div>
</body>
</html>