-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (72 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="row app-container">
<div class="row app-show-div">
<div class="col-md-8 col-sm-12">
<div class="bd-example bd-example-row">
<h1>Actual grid system </h1>
<div id="grid-show-system" class="container">
</div>
</div>
</div>
<div class="col-md-2 col-sm-12">
<div class="button-container">
<button id="add-row" type="button" class="btn btn-primary">Add row</button>
</div>
<div>
<form id="colum-size-form">
<div class="button-container">
<label for="columnSize">Size of column to add</label>
<input name="columnSize" type="number" value="1">
</div>
<div class="button-container">
<label for="columnOffset">Offset of column to add</label>
<input name="columnOffset" type="number" value="0">
</div>
<div class="button-container">
<button id="add-column" type="submit" class="btn btn-primary">Add Column</button>
</div>
</form>
</div>
<div class="help-button-wrapper">
<ul class="help-list">
<li>
<h3>
You can use right click to remove a row from the grid
</h3>
</li>
<li>
<h3>
Click the add row button to add row.Then click on add column to add the column.
</h3>
</li>
</ul>
<button class="help-button">
<span>?</span>
Get Help
</button>
</div>
</div>
<div class="col-md-2 col-sm-12">
<div class="row show-code-div">
<div id="code-div">
</div>
</div>
</div>
</div>
</div>
<div class="list-group contextual-menu">
<button type="button" class="list-group-item list-group-item-action delete-row-button">Delete row</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>