_slider.scss
1.07 KB
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
/* Home Slider Area css
============================================================================================ */
.home_banner_area{
border-top: 2px solid $baseColor;
position: relative;
}
.swiper-slide.swiper-slide-active{
.slider_text_inner{
left: 0px;
visibility: visible;
opacity: 1;
}
}
.slider_text_inner{
position: absolute;
left: 50px;
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: 5;
visibility: hidden;
opacity: 0;
transition: all 300ms ease;
transition-delay: 1.2s;
.slider_text{
background: #fff;
border-radius: 5px;
padding: 65px;
position: relative;
&:before{
content: "";
width: 360px;
height: 530px;
background: rgba(167, 203, 0, .80);
position: absolute;
left: -95px;
top: -70px;
z-index: -1;
}
h2{
font-size: 48px;
color: $dip;
text-transform: uppercase;
margin-bottom: 12px;
}
p{
margin-bottom: 30px;
}
.banner_btn{
margin-right: 7px;
}
}
}
/* End Home Slider Area css
============================================================================================ */