-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (46 loc) · 2.16 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 lang="es" >
<head>
<meta charset="UTF-8">
<title>Lab León</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="particles-js"></div>
<div class="terminal-window">
<header>
<div class="button green"></div>
<div class="button yellow"></div>
<div class="button red"></div>
</header>
<section class="terminal">
<div class="history"></div>
$ <span class="prompt"></span>
<span class="typed-cursor"></span>
</section>
</div>
<!-- data -->
<div class="terminal-data mimik-run-output">
<br>Found 1 feature<br>
----------------------------------------------<br>
Feature: Bottles <span class="gray"># ./features/bottles.feature</span><br><br>
Scenario: A bottle falls from the wall<br>
<span class="green">✓</span> <span class="gray">Given 100 green bottles are standing</span><br>
<span class="green">✓</span> <span class="gray">when 1 green bottle accidentally falls</span><br>
<span class="green">✓</span> <span class="gray">then there are 99 green bottles standing</span><br>
<br>
<span class="gray"> ---------- ----------- ------- -------- --------</span><br>
Features Scenarios Steps Passed Failed<br>
<span class="gray"> ---------- ----------- ------- -------- --------</span><br>
1 1 4 <span class="green">✓ 4</span> 0 <br>
<br>
Completed 1 feature in 0.01s<br>
<br>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://www.mattboldt.com/demos/typed-js/js/typed.custom.js'></script>
<script src='https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>