62 lines
940 B
SCSS
62 lines
940 B
SCSS
button,
|
|
submit{
|
|
box-sizing: border-box;
|
|
|
|
font-weight: 600;
|
|
|
|
box-shadow: none;
|
|
border: 0;
|
|
|
|
// Button sizes
|
|
&.small{
|
|
padding: 5px 32px;
|
|
|
|
font-size: 14px;
|
|
}
|
|
&.medium{
|
|
padding: 10px 32px;
|
|
|
|
font-size: 16px;
|
|
}
|
|
&.large{
|
|
padding: 12px 32px;
|
|
|
|
font-size: 20px;
|
|
}
|
|
|
|
|
|
// Button colors
|
|
&.blue{
|
|
color: $white;
|
|
|
|
background-color: $blue;
|
|
}
|
|
&.white-blue{
|
|
color: $blue;
|
|
|
|
background-color: $white;
|
|
border: 1px $blue solid;
|
|
}
|
|
&.white-black{
|
|
color: $black;
|
|
|
|
background-color: $white;
|
|
border: 1px $black solid;
|
|
}
|
|
&.gray{
|
|
color: $black;
|
|
|
|
background-color: $gray;
|
|
border: 1px $black solid;
|
|
}
|
|
&.yellow{
|
|
color: $black;
|
|
|
|
background-color: $yellow;
|
|
}
|
|
&.red{
|
|
color: $white;
|
|
|
|
background-color: $red;
|
|
}
|
|
} |