-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_wing-slider.scss
51 lines (51 loc) · 1010 Bytes
/
_wing-slider.scss
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
.wing-slider{
display: flex;
flex-direction: column;
justify-content: center;
.wing-slider-bg-full {
width: 100vw;
position: absolute;
right: 0;
top: 0px;
z-index: -1;
}
[id^=slide] {
position: absolute;
bottom: 0;
opacity: 0;
text-align: center;
z-index: 0;
transition: all .4s ease-in-out;
}
[id^=desc-slide]{
opacity: 0;
z-index: 0;
transition: all .4s ease-in-out;
}
[id^=button-slider] {
margin: 10px;
position: relative;
.wing-slider-button-image{
border-radius: 10px;
}
span{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
.wing-slider-tb-btn {
display: inherit;
}
.topOfSlider, .bottomOfSlider {
p {
margin: 0 auto;
}
}
[id^=desc-slide] {
text-align: center;
margin: 0 auto;
position: absolute;
}
}