61 lines
971 B
SCSS
61 lines
971 B
SCSS
/*
|
|
* Button Styles
|
|
*
|
|
*/
|
|
|
|
.button {
|
|
display: inline-block;
|
|
line-height: $unit * 4;
|
|
padding: 0px ($unit * 2);
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
overflow: hidden;
|
|
|
|
|
|
// SIZES
|
|
&.button-large {
|
|
font-size: 15px;
|
|
line-height: $unit * 6;
|
|
padding: 0px ($unit * 3);
|
|
}
|
|
|
|
&.button-x-large {
|
|
font-size: 16px;
|
|
line-height: $unit * 7;
|
|
padding: 0px ($unit * 3);
|
|
}
|
|
|
|
|
|
// COLORS
|
|
|
|
&.button-secondary {
|
|
background: $fog;
|
|
color: rgba($snow, .87);
|
|
}
|
|
|
|
&.button-plain {
|
|
background: $snow;
|
|
color: rgba($steel, .87);
|
|
}
|
|
|
|
&.button-navy {
|
|
background: $ocean;
|
|
color: rgba($snow, .87);
|
|
}
|
|
|
|
&.button-banner {
|
|
background: $metal;
|
|
color: rgba($snow, .87);
|
|
}
|
|
|
|
&.button-shield {
|
|
background: $regal url('/resources/images/logos/inverse/shield/22.png') 24px 13px no-repeat;
|
|
color: rgba($snow, .87);
|
|
padding-left: 54px;
|
|
}
|
|
|
|
|
|
} |