-
Notifications
You must be signed in to change notification settings - Fork 4
/
dashboard-example.html
97 lines (97 loc) · 2.36 KB
/
dashboard-example.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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Dashboard</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: Helvetica;
background-color: #eee;
text-align: center;
}
ul a {
position: relative;
}
ul#big {
margin: 0;
margin-top: 30px;
padding: 0;
font-weight: bold;
}
ul#big li {
list-style: none;
}
ul#big li a {
color: #222;
font-size: 40px;
display: block;
text-align: center;
text-decoration: none;
padding: 20px;
}
ul#big li a:hover {
color: #eee;
background-color: #222;
}
ul.little {
margin: 0;
margin-top: 30px;
padding: 0;
font-weight: bold;
}
ul.little li {
list-style: none;
display: inline-block;
}
ul.little li a {
color: #444;
font-size: 18px;
text-align: center;
text-decoration: none;
padding: 20px;
}
ul.little li a:hover {
color: #eee;
background-color: #222;
}
#google {
margin-top: 30px;
}
#google input[type=search] {
font-size: 30px;
width: 350px;
text-align: center;
}
</style>
</head>
<body>
<ul id="big">
<li><a href="">Tickets</a></li>
<li><a href="">Support</a></li>
<li><a href="">Errors</a></li>
<li><a href="">Wiki</a></li>
<li><a href="https://github.com/">GitHub</a></li>
</ul>
<ul class="little">
<li><a href="http://twitter.com/">Twitter</a></li>
<li><a href="http://news.ycombinator.com/">Hacker News</a></li>
<li><a href="http://www.abc.net.au/news/">ABC</a></li>
<li><a href="http://news.bbc.co.uk/">BBC</a></li>
<li><a href="http://www.bom.gov.au/products/IDV10450.shtml">BOM</a></li>
<li><a href="http://gist.github.com/">Gist</a></li>
</ul>
<ul class="little">
<li><a href="">AB</a></li>
<li><a href="">BC</a></li>
<li><a href="">DE</a></li>
<li><a href="">$$</a></li>
<li><a href="http://engineyard.helpserve.com/index.php">EY</a></li>
</ul>
<div id="google">
<form action="http://www.google.com/search" method="get">
<input type="search" id="search-bar" name="q" />
</form>
</div>
</body>
</html>