mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-05 00:02:38 -04:00
25 lines
371 B
SCSS
25 lines
371 B
SCSS
.btn {
|
|
display: inline-block;
|
|
padding: 0.75em 1.25em;
|
|
background: $color-primary-link;
|
|
border-radius: 0.5em;
|
|
color: #fff;
|
|
font-weight: inherit;
|
|
text-shadow: none;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
background: shade($color-primary-link, 15%);
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|
|
|
|
svg {
|
|
vertical-align: -1px;
|
|
}
|
|
}
|
|
|
|
.badge {
|
|
margin: 10px 5px;
|
|
}
|