brouilleursdeblanc/_sass/_buttons.scss
Michael Rose e987aeb88e Cleanup and document stylesheets
- Partially addresses #129
2015-03-03 13:05:35 -05:00

39 lines
853 B
SCSS

/* ==========================================================================
Buttons
========================================================================== */
/*
Default button
========================================================================== */
.btn {
display: inline-block;
margin-bottom: 20px;
padding: 8px 20px;
@include font-size(14);
background-color: $black;
color: $white;
border: 2px solid $black !important;
border-radius: $border-radius;
&:visited {
color: $white;
}
&:hover {
background-color: $white;
color: $black;
}
}
/*
Close button
========================================================================== */
.close-btn {
position: absolute;
top: 0;
right: 0;
z-index: 1;
background-color: transparent;
border: 0 solid transparent;
color: $white;
}