-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
39 lines (38 loc) · 2.34 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Index</title>
<style>
a { color: #356AA0; text-decoration: none; display:block; padding:10px; }
a:hover { color: #B02B2C; }
.blocks-wrapper { width:300px; margin:10% auto 0 auto; border:0px solid #ff0000; text-align:center; color: #444; }
.block { width:220px; border:1px solid #ddd; border-left:3px solid #ddd; background-color: #f1f2f3; margin:5px auto; text-transform: uppercase; border-radius:0px 3px 3px 0px ; text-align: left; background: -webkit-gradient(linear, left top, left bottom, from(#f1f2f3), to(#e1e2e3)); background: -moz-linear-gradient(top, #f1f2f3, #e1e2e3); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1f2f3", endColorstr="#e1e2e3"); }
.block span { visibility: hidden; }
.block:hover { background-color:#e7e7e7; border:1px solid #ccc; box-shadow:1px 1px 0px 0px #999; }
.block:hover span { visibility:hidden; }
.docs:hover { border-left:3px solid #73980A; }
.docs a:hover { color: #73980A; }
.utils:hover { border-left:3px solid #FF6F00; }
.utils a:hover { color: #FF6F00; }
.demo:hover { border-left:3px solid #B02B2C; }
.demo a:hover { color: #B02B2C; }
.separator { height:1px; }
</style>
</head>
<body>
<section>
<div class="blocks-wrapper">
<h2>Select Action to Perform</h2>
<div class="block docs"><a href="docs/index.php"><span>• </span> Documentation</a></div>
<div class="separator"></div>
<div class="block utils"><a href="utils/requirements/index.php"><span>•</span> Check Requirements</a></div>
<div class="block utils"><a href="utils/tests/index.php"><span>•</span> Running Tests</a></div>
<div class="block utils"><a href="utils/generators/index.php"><span>•</span> Code Generators</a></div>
<div class="separator"></div>
<div class="block demo"><a href="demos/index.php"><span>•</span> Demo Applications</a></div>
<div style="clear:both;"></div>
</div>
</section>
</body>
</html>