Tweak button styles
This commit is contained in:
parent
ace33f3d06
commit
8178fc3ba6
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue