-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (60 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles/bites.css">
<style type="text/css">
.embed-bite {
position: absolute;
bottom: 0;
right: 0;
background: #fff;
color: #555651;
text-decoration: none;
padding: 2px 8px;
font-family: 'PT Sans', Helvetica, sans-serif;
font-size: 0.85em;
}
.remove-bite {
position: absolute;
bottom: 0;
right: 100px;
background: #fff;
color: #c0392b;
text-decoration: none;
padding: 2px 8px;
font-family: 'PT Sans', Helvetica, sans-serif;
font-size: 0.85em;
border-top-left-radius: 3px;
}
.embed-testing {
background: #3498DB;
}
.embed-testing input {
display: block;
width: 35%;
margin: 20px auto;
font-size: 16px;
padding: 5px;
}
</style>
</head>
<body>
<pre data-lang="rb" data-group="testing"></pre>
<!--<pre data-lang="css" data-group="testing"></pre>
<pre data-lang="js" data-group="testing"></pre>
<pre data-lang="coffee" data-group="testing"></pre>
<pre data-lang="sass" data-group="testing"></pre>
<pre data-lang="rb" data-group="testing"></pre>-->
<script type="text/javascript" src="lib/ace/ace.js"></script>
<script data-main="lib/main" src="lib/require.js"></script>
<script>
if (requirejs) {
requirejs.config({
urlArgs: 'timestamp=' + Date.now()
});
}
</script>
</body>
</html>