3.7
fxl
2023-03-07 632a18ee7c83441a6036b90577424d2daad8d19c
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
.widget {
    border: none; 
    box-shadow: none; 
}
/*---------Palette Box--------*/
.color-box {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(14, 23, 38, 0.59);
    border-radius: 6px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    background: rgba(14, 23, 38, 0.59);
}
.color-box .cl-example {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: 6px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    margin-top: -10px;
    margin-left: -10px;
    margin-bottom: -10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.color-box:hover .cl-example {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
}
.color-box .cl-info { flex: 1; }
.color-box .cl-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #888ea8;
}
.color-box .cl-info span {
    font-size: 14px;
    color: #888ea8;
    font-weight: 600;
}