Skip to content

Commit

Permalink
added btn hover effects & filter: drop-shadow() has been commented ou…
Browse files Browse the repository at this point in the history
…t for now & will be implemented when using transparent imgs
  • Loading branch information
TBS96 committed Jun 1, 2024
1 parent ad43c5c commit 18e46cb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ body{
.slide{
min-width: 100%;
height: 100%;

/* will be applied when using transparent imgs */
/* filter: drop-shadow(0px 0px 15px rgb(20, 220, 53)); */
}

.controls{
Expand All @@ -36,10 +39,17 @@ body{
}

button{
background: rgba(0, 0, 0, 0.5);
background: rgba(0, 0, 0, 0);
color: #fff;
border: none;
padding: 10px;
height: 300px;
border-radius: 5px;
cursor: pointer;
transition: 0.2s;
}

button:hover{
transform: scale(1.2);
box-shadow: 0px 0px 150px 5px rgb(0, 26, 255);
}

0 comments on commit 18e46cb

Please sign in to comment.