-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
96 lines (86 loc) · 1.85 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
<!doctype html>
<html>
<head>
<title>TypeScript, React, and Redux - Counter Demo</title>
</head>
<body>
<h1>Counter Demo</h1>
<div class="demo">
<div id="redux-app-root">
Build the demo:
<pre>
$ npm run build
</pre>
...and <a href="javascript:window.location.reload()">refresh</a> this page!
</div>
</div>
<script src="node_modules/react/umd/react.development.js"></script>
<script src="node_modules/react-dom/umd/react-dom.development.js"></script>
<script src="dist/bundle.js"></script>
<link rel="stylesheet" href="node_modules/zakalwe/zakalwe.css" />
<style>
.demo {
display: flex;
align-items: center;
justify-content: center;
}
.hero {
font-size: 96pt;
font-weight: bold;
font-family: courier, mono;
line-height: 0.5em;
height: 0.9em;
text-align: center;
}
.error {
color: #a00;
font-style: italic;
text-align: center;
}
button {
border: 1px solid #231f20;
border-radius: 3px;
background: #fff;
cursor: pointer;
margin: 10px;
padding: 10px;
transition: all linear 0.2s;
width: 128px;
text-align: center;
}
button:focus {
outline:none;
}
button:active {
background-color:#1982d1;
border:1px solid #1982d1;
color:#fff;
transition: all linear 0.2s;
}
button[disabled] {
border-color:#ccc;
color:#ccc;
font-style:italic;
}
button[disabled]:active {
background: #fff;
border-color:#ccc;
}
footer {
position:fixed;
bottom: 0;
left: 0;
right:0;
}
</style>
<footer class="dark">
<section class="container copyright">
Another unrepentant production from
<a href="https://rjzaworski.com">rj zaworski</a>
· <a href="https://rjzaworski.com/c/typescript">Guide</a>
· <a href="https://github.com/rjz/typescript-react-redux">Github</a>
<!-- :^) -->
</section>
</footer>
</body>
</html>