-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (45 loc) · 960 Bytes
/
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
<html>
<head>
<style>
body {
background: #e3e3e3;
}
.test-wrapper {
background: white;
border-radius: 2px;
border: 1px solid #cccccc;
box-shadow: 1px 1px 1px 0px gray;
font-family: monospace;
margin-bottom: 10px;
padding: 10px;
}
.test-wrapper .test .result {
border-radius: 2px;
margin-bottom: 5px;
padding: 5px;
}
.test-wrapper .test.passed .result {
background: #008000;
color: #ADFF2F;
}
.test-wrapper .test.failed .result {
background: #FF0000;
color: #e3e3e3;
}
.test-wrapper .test div {
display: inline-block;
}
.test-wrapper .test .label {
background: #e3e3e3;
border-radius: 2px;
color: black;
padding: 2px;
}
</style>
</head>
<body>
<h2>JavaScript Function Fun</h2>
<script src="./functions.js"></script>
<script src="./tests.js"></script>
</body>
</html>