rallly/public/scss/partials/_buttons.scss
Luke Vella b72dfc474e Update
- updated styles
- added edit functionality
2015-01-12 12:09:00 +01:00

25 lines
592 B
SCSS

.btn-flat {
color:white;
background: $primary-clr;
text-decoration:none;
@include pad(em(10px) em(20px));
border-radius: 3px;
}
.btn-primary {
border:1px solid #E0E3E9;
border-radius: 2px;
box-shadow: inset 0 1px 0 white, 0 1px 2px rgba(black, 0.1);
@include background-image(linear-gradient(#FAFAFA, #EFF1F3));
font-size: em(12px);
font-weight:600;
color: $dark-gray-clr;
text-decoration:none;
padding: em(8px) em(20px);
&:focus {
outline:0;
}
&:active{
box-shadow: inset 0 0 5px rgba(black, 0.1);
}
}