Skip to content

Commit

Permalink
color
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiExtr committed Aug 29, 2023
1 parent 737e284 commit 7e0148b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
8 changes: 0 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@
<div class="but_text">
Click on me
</div>

<div class="but_text">
Click on me
</div>

<div class="but_text">
Click on me
</div>
</div>
<div class="box">
<span id="rangeValue">0</span>
Expand Down
10 changes: 5 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ body {
padding-top: 16px;
padding-bottom: 16px;
margin: 16px;
background-color: #333333;
background-color: #100f0f;
border-radius: 30em;
font-size: 15px;
text-transform: uppercase;
Expand All @@ -39,20 +39,20 @@ body {
border: none;
cursor: pointer;
overflow: hidden;
box-shadow: 4px 4px 10px #1b1b1b, -4px -4px 10px #424242;
box-shadow: 4px 4px 10px #000000, -4px -4px 10px #181818;
transition: all 0.2s ease;
}

.but_text:hover {
background-color: #333333;
background-color: #100f0f;
color: #ff6a00;
cursor: pointer;
}

.but_text:active {
transform: scale(0.99);
background-color: #333333;
box-shadow: inset 4px 4px 10px #1a1a1a, inset -4px -4px 10px #313131;
background-color: #100f0f;
box-shadow: inset 4px 4px 10px #000000, inset -4px -4px 10px #181818;
cursor: pointer;
}

Expand Down

0 comments on commit 7e0148b

Please sign in to comment.