summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_buttons.scss
blob: efef11ce9a880e393de7a61a5727a5f8aa26dbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@charset 'UTF-8';

.btn {
    @include single-transition(all, .25s, ease-in);
    @include border-radius($border-rad);

    &.btn-primary {
        background: $primary-color;
        border-color: transparent;

        &:hover,
        &:focus,
        &:active {
            background: $primary-color--hover;
        }
    }

    &.btn-inactive {
        background: $light-gray;
        border-color: transparent;
        color: $white;
    }
}