-
Notifications
You must be signed in to change notification settings - Fork 3
/
headers.html
67 lines (54 loc) · 1.01 KB
/
headers.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
<html>
<head>
<style>
body {
font-family: monospace;
word-wrap: break-word;
}
#container {
white-space: pre;
}
.header {}
.url {
cursor: pointer;
}
.content {
display: none;
margin-bottom: 10px;
}
.request {
margin-top: 10px;
color: #800080;
}
.response {
margin-top: 10px;
color: blue;
}
.visible {
border-top: 1px solid black;
border-bottom: 1px solid black;
}
.visible .content {
display: block;
}
.css {
color: green;
border-top: 1px solid green;
}
.header:hover,
.css:hover {
background-color: #eee;
}
</style>
<script src="jquery.min.js"></script>
<script src="underscore.js"></script>
<script src="headers.js"></script>
</head>
<body>
<div id="container"></div>
<button type="button" id="saveButton">Save?</button>
<button type="button" id="playButton">RePlay</button>
<input type="number" id="numOfReplays" value="1"> Times!
<div id="end"></div>
</body>
</html>