-
Notifications
You must be signed in to change notification settings - Fork 1
/
cade-minha-sala.html
37 lines (32 loc) · 1.51 KB
/
cade-minha-sala.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
<html>
<head>
<meta charset="UTF-8"/>
<title>Cadê minha sala?</title>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="js/cade-minha-sala.js"></script>
<style>
@import url('css/cade-minha-sala.css') screen, projection;
@import url('css/materialize.css') screen, projection;
</style>
</head>
<body>
<div class="valign-wrapper">
<div class="valign">
<h4 class="center">Cadê minha sala?</h4>
<h6 class="center">(só Santo André por enquanto, sorry)</h6>
<label for="salaText">Número da Sala</label>
<input id="salaText" placeholder="no formato S-205-0 ou L606"/>
<button class="btn waves-effect waves-light right" id="update">CADÊ????</button>
<br/>
<div id="theBuildings" class="z-depth-2">
<div id="blocoA" class="z-depth-2 center middle">Bloco A</div>
<div id="torre1" class="z-depth-2 center middle">Torre 1</div>
<div id="torre2" class="z-depth-2 center middle">Torre 2</div>
<div id="torre3" class="z-depth-2 center middle">Torre 3</div>
<div id="blocoB" class="z-depth-2 center middle">Bloco B</div>
</div>
<h6 class="center">made with <3 by <a href="https://www.facebook.com/ufabcdojo/">ufabc.dojo</a></h6>
</div>
</div>
</body>
</html>