forked from jrsouth/in-out
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-menu.html
76 lines (59 loc) · 1.23 KB
/
index-menu.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
<html>
<head>
<style>
body {
text-align: center;
font-family: Bliss Pro Bold, sans-serif;
color: #666666;
}
div.options {
margin: 2em auto;
}
div.option {
display: inline-block;
}
img.main-icon {
margin: 1em 3em;
opacity: 0.5;
border-radius: 10px;
box-shadow: 5px 5px 15px rgba(0,0,0,.4);
}
div.option:hover img.main-icon {
background-color: #eeeeee;
}
p {
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
</style>
</head>
<body>
<div class="options">
<a href="signin.php">
<div class="option">
<img class="main-icon" src="images/appbar.lines.horizontal.2x4.png" />
<p>Sign-in board<br /><sup> </sup></p>
</div>
</a>
<a href="checklist.php">
<div class="option">
<img class="main-icon" src="images/appbar.checkmark.pencil.png" />
<p>Checklist<br /><sup> </sup></p>
</div>
</a>
<a href="phonelist.php">
<div class="option">
<img class="main-icon" src="images/appbar.book.contact.png" />
<p>Phonelist<br /><sup>(Coming soon)</sup></p>
</div>
</a>
<div class="option">
<img class="main-icon" src="images/appbar.group.png" />
<p>Org. chart<br /><sup>(Coming soon)</sup></p>
</div>
</div>
</body>
</html>