barebones/scss/modules/_buttons.scss

19 lines
382 B
SCSS
Raw Normal View History

2014-05-09 13:19:28 +02:00
.btn {
background-color: $base-colour;
border: 0;
color: $base-background-colour;
cursor: pointer;
display: inline-block;
font: inherit;
font-weight: bold;
2014-12-01 13:26:25 +01:00
height: ($base-spacing-unit * 1.5);
line-height: ($base-spacing-unit * 1.5);
padding: 0 $base-spacing-unit;
2014-05-09 13:19:28 +02:00
text-align: center;
width: auto;
2014-09-23 12:40:57 +02:00
&::-moz-focus-inner {
border: 0;
padding: 0;
}
}