-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvStyle.css
77 lines (71 loc) · 1.45 KB
/
advStyle.css
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
*{
box-sizing: border-box;
}
.salary{
width:300px;
display: flex;
flex-direction: column;
justify-content: center;
border:1px solid blue;
background-color: lightgrey;
align-items: center;
}
.salary .rangeLine{
width:80%;
height: 10px;
border:1px solid grey ;
border-radius: 5px;
background-color: #FFD700 ;
margin:30px 0;
position: relative;
z-index:1;
}
.salary .leftLim{
position: absolute;
width:16px;
height:16px;
border:1px solid black ;
/*border-top:8px solid transparent;
border-bottom:8px solid transparent;
border-right:8px solid transparent;
border-left: 8px solid green;*/
border-radius: 50%;
background-image: repeating-radial-gradient(black 0%,#ADFF2F 20%);
top:-4.5px;
z-index: 3;
}
.salary .rightLim{
position: absolute;
width:16px;
height: 16px;
border:1px solid black ;
border-radius: 50%;
background-image: repeating-radial-gradient(black 0% ,#ADFF2F 20% );
top:-4.5px;
z-index:3;
}
.salary .activeRange{
position: absolute;
height:10px;
background-image: repeating-linear-gradient(-45deg,#00BFFF 2%,black 8%);
top:-1px;
border:1px solid black ;
z-index: 2;
}
.salary .leftLim:hover{
cursor: pointer;
}
.salary .rightLim:hover{
cursor: pointer;
}
/*.salary .leftLim::before{
display: block;
position: absolute;
top:-15px;
left:1px;
content:'';
width: 10px;
height: 10px;
background-color: pink;
border:1px solid green;
}*/