Tweak button styles

This commit is contained in:
Shadowfacts 2020-04-25 22:27:03 -04:00
parent ace33f3d06
commit 8178fc3ba6
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 11 additions and 1 deletions

View File

@ -22,6 +22,7 @@ button.btn-link {
border: none; border: none;
color: $link-color; color: $link-color;
text-decoration: none; text-decoration: none;
padding: 0;
&:hover { &:hover {
cursor: pointer; cursor: pointer;
@ -29,9 +30,14 @@ button.btn-link {
} }
} }
input, button:not(.btn-link) {
box-sizing: border-box;
height: 1.75rem;
}
button[type=submit]:not(.btn-link) { button[type=submit]:not(.btn-link) {
padding: 0 2rem;
font-family: $sans-serif; font-family: $sans-serif;
padding: 0.25rem 2rem;
background-color: $tint-color; background-color: $tint-color;
border: 1px solid darken($tint-color, 20%); border: 1px solid darken($tint-color, 20%);
color: white; color: white;
@ -69,6 +75,10 @@ header {
li { li {
display: inline; display: inline;
list-style: none; list-style: none;
&:not(:last-child) {
margin-right: 1rem;
}
} }
} }
} }