-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (77 loc) · 2.36 KB
/
index.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
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Make dorm</title>
<link rel="stylesheet" href="css/styles.css?v=1.0">
<link href="//cdnjs.cloudflare.com/ajax/libs/foundation/5.5.3/css/foundation.min.css" rel="stylesheet">
<style type="text/css">
.pelados {
background-color: orange;
}
.schorus {
background-color: pink;
}
.crazy {
background-color: lightgreen;
}
.thera {
background-color: cyan;
}
.realreal {
background-color: yellow;
}
.whistle {
background-color: red;
}
.onboarding {
background-color: lightblue;
}
.selected {
border: 2px solid black;
}
#participants, #roommies {
font-size: 24px;
}
</style>
</head>
<body>
<div class="container">
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="#">Make Dorm!</a></h1>
</li>
</ul>
</nav>
<div class="row">
<section id="participants" class="large-3 columns">
<div id="pasto" class="pelados">Pasto</div>
<div id="costa" class="pelados">Costa</div>
<div id="sebamar" class="pelados">Sebamar</div>
<div id="sebagon" class="pelados">Sebagon</div>
<div id="cholee" class="pelados">Cholee</div>
<div id="carri" class="pelados">Carri</div>
<div id="gonchi" class="schorus">Gonchi</div>
<div id="barte" class="schorus">Barte</div>
<div id="marce" class="schorus">Marce</div>
<div id="juan" class="crazy">Juan</div>
<div id="diegol" class="crazy">Diegol</div>
<div id="bellucci" class="thera">Bellucci</div>
<div id="dano" class="thera">Dano</div>
<div id="pelado" class="realreal">Pelado</div>
<div id="alexis" class="whistle">Alexis</div>
<div id="rodrigo" class="onboarding">Rodrigo</div>
</section>
<div class="large-2 columns">
<button id="button">GO!</button>
</div>
<section id="roommies" class="large-7 columns">
</section>
</div>
</div>
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>