App: restyle buttons

This commit is contained in:
rektdeckard
2020-08-08 23:49:31 -04:00
parent 40f56910be
commit 981e5ff53d
3 changed files with 53 additions and 39 deletions

View File

@@ -33,49 +33,39 @@ input {
}
button {
border: none;
display: flex;
align-items: center;
height: 72px;
padding: 0 40px 0 32px;
margin-top: 32px;
background-color: #ffd171;
justify-content: center;
}
button.main-button {
height: 64px;
width: 240px;
margin: 0 24px 0 0;
background-color: white;
border-radius: 8px;
border: none;
font-family: "Manrope";
font-weight: 600;
font-size: 20px;
line-height: 30px;
box-sizing: border-box;
border: 2px solid black;
box-shadow: 4px 4px 0 0 black;
transform: translate(0, 0);
transition: all 0.2s ease;
cursor: pointer;
user-select: none;
}
button.main-button {
display: flex;
align-items: center;
height: 72px;
padding: 0 40px 0 32px;
margin-top: 32px;
background-color: #ffd171;
border-radius: 8px;
border: none;
font-family: "Manrope";
font-weight: 600;
font-size: 20px;
line-height: 30px;
cursor: pointer;
transition: transform 0.15s
}
button.main-button:hover {
outline: none;
transform: scale(1.05);
transition: transform 0.15s
}
button.main-button:active {
transform: translate(4px, 4px);
/* background-color: #DDDDDD; */
box-shadow: 0 0 0 0 black;
}
button.main-button:focus {
outline: none;
background-color: #FFBF3B;
transform: scale(1);
}
a.main-link {