forked from ifandelse/machina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (67 loc) · 2.84 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
<!DOCTYPE html>
<html>
<head>
<title>Machina.js</title>
<link rel="stylesheet" href="ext/bootstrap-responsive.min.css" type="text/css">
<link rel="stylesheet" href="ext/bootstrap.min.css" type="text/css">
<style type="text/css">
.banner {
position: relative;
padding: 10px 0;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.35), 0 0 30px rgba(0,0,0,.055);
background: #020031; /* Old browsers */
background: -moz-linear-gradient(35deg, #020031 0%, #6d3353 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#020031), color-stop(100%,#6d3353)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(35deg, #020031 0%,#6d3353 100%); /* IE10+ */
background: linear-gradient(35deg, #020031 0%,#6d3353 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020031', endColorstr='#6d3353',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
-webkit-box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
box-shadow: inset 0 3px 9px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
}
.banner h1 {
font-size: 60px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
}
.banner p {
font-size: 20px;
font-weight: 300;
line-height: 30px;
margin-bottom: 20px;
}
</style>
<script type="text/javascript" src="/ext/jquery-1.7.1.js"></script>
<script type="text/javascript" src="/ext/bootstrap.min.js"></script>
</head>
<body>
<header class="banner">
<div class="container-fluid">
<h1>Machina.js</h1>
<p class="lead">A JavaScript framework for highly customizable finite state machines.</p>
</div>
</header>
<div class="container-fluid">
<div class="lead">
You're at the root of the repository. Some helpful links:
</div>
<div class="well well-large">
<a href="spec/">Tests</a>
</div>
<div class="well well-large">
<a href="atm">Fake ATM UI w/FSMs</a>
</div>
<div class="well well-large">
<a href="connectivity">Connectivity FSM Example</a>
</div>
<div class="well well-large">
<a href="load">Using FSMs to Manage Init/Loading</a>
</div>
</div>
</body>
</html>