summaryrefslogtreecommitdiffstats
path: root/docs/less/options.less
blob: 976826c985734f18839a0048b12ab8ee592c58fd (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.options {

    list-style: none outside none;
    margin-bottom: 20px;
    overflow: hidden;
    padding-bottom: 1px;
    padding-left: 0;

    li {
        border: 1px solid darken(@well-bg, 7%);
        border-radius: @border-radius-base;
        float: left;
        font-size: @font-size-base;
        margin: 0 -1px -1px 0;
        padding: @padding-large-vertical @padding-large-horizontal;
        background-color: @body-bg;
        text-align: center;
        width: 10%;
        margin-right: 2.5%;
        height: 120px;

        &:first-child {
            margin-left: 1.25%;
        }

        &:last-child {
            margin-right: 1.25%;
        }

        .glyphicon {
            display: block;
            font-size: @font-size-large;
            margin: 5px auto 18px;
        }

        h3 {
            margin: 5px auto 18px;
            font-size: @font-size-large;
        }

        img {
            display: block;
            margin: 5px auto 12px;
        }
    }
}

.well .options {
    margin-bottom: 0;
}