Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ button {
transition: all 0.5s ease;
-o-transition: all ease 0.5s;
}
button:active {
transform: scale(0.98);
/* Scaling button to 0.98 to its original size */
box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
/* Lowering the shadow */
}

button:hover {
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
Expand Down