summaryrefslogtreecommitdiffstats
path: root/app/css/_carousel.less
blob: 8989490db2d0bd8a749b2994e07bbafa42b56ff8 (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
.slider {
    box-shadow: 0px 0px 2px 4px darken(@glances-white, 10%);
    border: none;
    max-height: 500px;

    .screenshot {
        max-height: 500px;
        height: auto;
    }

    .slick-dots {
        position: absolute;
        list-style: none;
        font-size: 0;
        margin-top: 20px;
        padding: 0;
        width: 100%;
        text-align: center;

        li {
            display: inline-block;
            margin-right: 25px;

            &.slick-active button {
                background-color: @secondary-color;
            }

            button {
                width: 5px;
                height: 5px;
                padding: 0;
                border-radius: 5px;
                border: none;
                box-shadow: none;
                background-color: darken(@glances-white, 10%);
            }
        }
    }
}