summaryrefslogtreecommitdiffstats
path: root/theme/stylesheets/website/buttons.less
blob: dbc4769520db4b9eaea621047e81d671b7edac87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.buttons {
    .clearfix();
}

.button {
    border: 0;
    background-color: transparent;
    background: @button-background;
    color: @button-color;
    width: 100%;
    text-align: center;
    float: left;
    line-height: @line-height-base;
    padding: 8px 4px;

    &:hover {
        color: @button-hover-color;
    }

    &:focus, &:hover {
        outline: none;
    }

    &.size-2 {
        width: 50%;
    }

    &.size-3 {
        width: 33%;
    }
}