Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3482 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3481 stevensc 1
.btn-primary {
2
    background-color: $button-bg;
3
    border-radius: 10px;
4
    color: $button-text-color;
5
    &:hover {
6
        background-color: $button-bg-hover;
7
    }
8
}
9
 
10
.btn-secondary {
11
    background: $button-bg;
12
    border: 1px solid $border-primary;
13
    border-radius: 5px;
14
    color: $button-text-color-secondary;
15
    &:hover {
16
        background-color: $button-bg-secondary-hover;
17
        border-color: $border-trasnparent;
18
    }
19
}
20
 
21
.btn-tertiary {
22
    background-color: $button-bg-tertiary;
23
    border-color: #f4f4f4;
24
    color: $button-text-color-tertiary;
25
    &:hover {
26
        background: #d4d4d4;
27
        border: 1px solid $border-primary;
28
        color: $border-primary;
29
    }
30
}