Skip to content

Commit

Permalink
fix(css): removed invalid syntax from list
Browse files Browse the repository at this point in the history
  • Loading branch information
chkpwd committed Dec 26, 2023
1 parent 9c2b6d1 commit 9a2814f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ <h1>The Magical Tech Elixir!</h1>
</div>
<div class="instructions">
<h2>Follow these steps to cast the spell:</h2>
<ul style="list-style-type:none;">
<ul>
<li>
<p>Step 1: <span class="key-combination">Press the <i class="fab fa-windows"></i> Windows key and the <strong>X</strong> key at the same time.</span></p>
Step 1: <span class="key-combination">Press the <i class="fab fa-windows"></i> Windows key and the <strong>X</strong> key at the same time.</span>
</li>
<li>
<p>Step 2: <span class="key-stroke">Press the <strong>U</strong> key twice.</span></p>
Step 2: <span class="key-stroke">Press the <strong>U</strong> key twice.</span>
</li>
</ul>
</div>
Expand Down
4 changes: 4 additions & 0 deletions templates/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ h1 {
margin-bottom: 50px;
}

ul {
list-style-type: none;
}

.key-sequence p {
color: #FFF;
background: #000;
Expand Down

0 comments on commit 9a2814f

Please sign in to comment.