Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Arash1381-y committed Oct 15, 2023
1 parent b223720 commit 191d35d
Showing 1 changed file with 39 additions and 5 deletions.
44 changes: 39 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<title>FSM Ninja</title>
<meta charset="utf-8">

<meta name="google-site-verification" content="i0vmn4IP7f-3iowQql-H9hjpWkS_FjvrXaKsN3mG5Gw" />


<link rel="shortcut icon" type="image/x-icon" href="icon.ico"/>

Expand Down Expand Up @@ -45,6 +47,30 @@
display: flex;
}

#panel {
display: none;
}

#board {
display: flex;
padding-left: 8rem;
padding-right: 8rem;
margin: 1rem;
}

/* Display the options class on screens with a minimum width of 768px (adjust as needed) */
@media (min-width: 1000px) {
#panel {
display: flex;
}
}

@media only screen and (max-width: 1000px) {
#board {
display: flex;
justify-content: center;
}
}

.jsoneditor {
border: none;
Expand Down Expand Up @@ -172,7 +198,7 @@
</nav>


<div style="display: flex; padding-left: 8rem; padding-right: 8rem; margin: 1rem">
<div id="board">
<canvas class="rounded bg-white shadow-lg" id="canvas"></canvas>
<div class="rounded bg-white shadow-lg" id="panel">
<div id="jsoneditor"></div>
Expand Down Expand Up @@ -278,7 +304,8 @@ <h5>Action:</h5>
<mark>Double-click</mark>
on the created state to make it
<mark>Accept State</mark>
or revert back to <mark>Normal State</mark>
or revert back to
<mark>Normal State</mark>
</p>

<h5>Description</h5>
Expand All @@ -292,15 +319,20 @@ <h4 class="display-6 text-primary">Delete</h4>
<h5>Action:</h5>
<p>
<mark>Click</mark>
on the state/link and press <mark>delete</mark> (In Mac use <mark>fn + backspace</mark>)
on the state/link and press
<mark>delete</mark>
(In Mac use
<mark>fn + backspace</mark>
)
</p>

<h5>Description</h5>
<P>
Remove a
<mark>state</mark>
or
<mark>link</mark>.
<mark>link</mark>
.
</P>


Expand All @@ -309,7 +341,9 @@ <h4 class="display-6 text-primary">Modify Props</h4>
<h5>Action:</h5>
<p>
<mark>Click</mark>
on the <mark>small square</mark> near the specific field to edit it.
on the
<mark>small square</mark>
near the specific field to edit it.
</p>

<h5>Description</h5>
Expand Down

0 comments on commit 191d35d

Please sign in to comment.