taiga-front/app/styles/components/buttons.scss

74 lines
1.4 KiB
SCSS
Executable File

/* Buttons components */
.trans-button {
font-family: 'ostrichSans';
@extend .large;
&:hover {
@include transition (color .3s linear);
color: $greenTaiga;
}
.icon {
margin-right: .3rem;
}
}
a.button{
font-family: 'ostrichSans';
@extend .large;
padding: 5px 40px;
height: 32px;
display: inline-block;
.icon {
margin-right: .3rem;
}
}
.button-green {
@extend .button;
background: $greenTaiga;
@include transition (background .3s linear);
span {
color: $white;
position: relative;
top: 2px;
}
&:hover {
@include transition (background .3s linear);
background: $freshTaiga;
}
}
.button-gray {
@extend .button;
background: $buttonGray;
@include transition (background .3s linear);
span {
color: $white;
position: relative;
top: 2px;
}
&:hover {
@include transition (background .3s linear);
background: $buttonGrayHover;
color: $white
}
}
.button-bulk {
@extend .button;
background: $greenTaiga;
font-size: 22px;
padding: 5px;
vertical-align: middle;
margin-left: 2px;
span {
color: $white;
}
.icon {
margin-right: 0;
}
&:hover {
@include transition (background .3s linear);
background: $freshTaiga;
}
}