-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_hs.css
115 lines (99 loc) · 1.88 KB
/
styles_hs.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body{
background: black;
font-family: 'Poppins', sans-serif;
}
h1{
margin: 50px auto;
text-align: center;
display: flex;
justify-content: center;
color: white;
}
.container-fluid{
margin-top: 100px;
position: relative;
width: 900px;
height: 600px;
padding: 0;
}
/* @mixin center(){
display: flex;
justify-content:center;
align-items:center;
} */
.slider-container{
height:inherit;
width: 100%;
margin: 0;
padding: 0;
}
.slider{
-webkit-appearance:none;
appearance:none;
width: 100%;
height: inherit;
outline: none;
background: rgba(0, 0, 0, 0.1);
-webkit-transition: .2s;
transition: opacity .2s;
margin: 0;
padding: 0;
}
.slider::-webkit-slider-runnable-track{
/* background: rgba(169, 169, 169, 0.3); */
}
.slider:hover{
background: rgba(169, 169, 169, 0.005);;
}
.slider::-webkit-slider-thumb{
-webkit-appearance:none;
appearance:none;
opacity: 100%;
width: 15px;
height: 600px;
background: #1DB954;
cursor:pointer;
margin: 0;
padding: 0;
}
.image{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: 600px 100%;
z-index: -1;
}
.background-image{
background-image: url(./images/Stack-after.jpg);
}
.foreground-image{
background-image: url(./images/Stack-before.png);
width: 50%;
}
/* .ba_slider{
position: absolute;
width: 100%;
height: 100%;
background: rgba(#f2f2f2, .3);
outline: none;
margin: 0;
transition: all .2s;
}
.ba_slider:-webkit-slider-thumb{
display: flex;
justify-content:center;
align-items:center;
}
.ba_slider:hover{
background:rgba(#f2f2f2, 0.1);
}
.ba_slider::-webkit-slider-thumb{
-webkit-appearance: none;
appearance: none;
width: 5px;
height: 800px;
background: white;
cursor:pointer;
} */