Skip to content

Made the buttons pop a little #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: beta
Choose a base branch
from
Open
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
24 changes: 23 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,20 @@ img.center {
font-size: 24pt;
margin: -2px auto;
cursor: pointer;
transform: translate(0, 0);
transition: transform 300ms, color 300ms, background-color 300ms;
outline: none !important;
}
.small_button, .small_button_off {

.button:active {
transform: translate(0, 10%);
transition: transform 0ms, color 0ms, background-color 0ms;
color: rgb(0, 0, 0) !important;
background-color: white !important;
}

.small_button,
.small_button_off {
background-color: #333;
font-family: 'Montserrat', sans-serif;
border: none;
Expand All @@ -103,6 +115,16 @@ img.center {
font-size: 18pt;
margin: -2px auto;
cursor: pointer;
transform: translate(0, 0);
transition: transform 300ms, color 300ms, background-color 300ms;
outline: none !important;
}

.small_button:active {
transform: translate(0, 10%);
transition: transform 0ms, color 0ms, background-color 0ms;
color: rgb(0, 0, 0) !important;
background-color: white !important;
}
.small_button_off {
background-color: #ddd;
Expand Down