sliders.css 1.24 KB
Newer Older
Patrick's avatar
Patrick committed
1
2
3
4
5
6
7
8
9
10
11
12
13
 /* slider */
 /* ------------------------------- */
 .c-1-color { background: #38943d; }
 .c-2-color { background: #699438; }
 .c-3-color { background: #d0d40b; }
 .c-4-color { background: #db6f09; }
 .c-5-color { background: #ad0202; }

 .rectangle {
    height: 50px;
    width: 100px;
 
  }
Patrick's avatar
Patrick committed
14
.One{
Patrick's avatar
Patrick committed
15
16
    background-color: #38943d;
}
Patrick's avatar
Patrick committed
17
.Two{
Patrick's avatar
Patrick committed
18
19
    background-color: #699438;
}
Patrick's avatar
Patrick committed
20
.Three{
Patrick's avatar
Patrick committed
21
22
    background-color: #d0d40b;
}
Patrick's avatar
Patrick committed
23
.Four{
Patrick's avatar
Patrick committed
24
25
    background-color: #db6f09;
}
Patrick's avatar
Patrick committed
26
.Five{
Patrick's avatar
Patrick committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    background-color: #ad0202;
}

.my-legend .legend-title {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 90%;
    }
  .my-legend .legend-scale ul {
    margin: 0;
    margin-bottom: 5px;
    padding: 0;
    float: left;
    list-style: none;
    }
  .my-legend .legend-scale ul li {
    font-size: 100%;
    list-style: none;
    margin-left: 0;
    line-height: 30px;
    width:150px;
    margin-bottom: 2px;
    font-weight: bold;
    }
  .my-legend ul.legend-labels li span {
    display: block;
    float: left;
    height: 30px;
    width: 70px;
    margin-right: 5px;
    margin-left: 0;
    border: 1px solid #999;
    }
  .my-legend .legend-source {
    font-size: 90%;
    color: rgb(0, 0, 0);
    clear: both;
    }
  .my-legend a {
    color: rgb(0, 0, 0);
    }