summaryrefslogtreecommitdiff
path: root/sass/_slider.scss
blob: 17d0550616f23bcdce836340bbcb3579ce94cd7d (plain)
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

/*Flexslider*/

.flexslider {
	border: 0;
	max-width: 100%;
	margin: 0;
	overflow: hidden;
	@include box-shadow(none);
	@include border-radius(0px);

	.slider-caption{
		display: none;
	    position: absolute;
	    top: 30%;
	    left: 5%;
	    z-index: 99;
	    width: 90%;
	    text-align: left;
	    font-size: 1.2em;
	    line-height: 150%;
	    color: #fff;
	    padding: 20px;
	    background: rgba(0,0,0,0.3);
	    @include border-radius(0px);
	}

	.slider-title{
		font-size: 2em;
		font-weight: 600;
		color: #fff;
	}

	.slider-description{
		display: inline-block;
		clear: both;
	}

	.slides{
		
		li{
			position: relative;

			&:after{
				content:"";
				position: absolute;
				top: 0;
				right: 0;
				left: 0;
				bottom: 0;
				@include transition(all 2s);
			}
		}
	}

	.flex-direction-nav{
		display: none;
		position: absolute;
		top: 50%;
		width: 100%;

		li{
			list-style: none;
		}

		a{
			font-size: 0;
    		padding: 10px;

    		&:before,
    		&:after{
    			color: #fff;
    		}
		}
	}

	.flex-control-paging li a {
	    width: 8px;
	    height: 8px;
	    display: block;
	    background: #fff;
	    cursor: pointer;
	    text-indent: -9999px;
	    @include border-radius(50%);

	    &.flex-active{
			background: #000;
	    }
	}

	.flex-control-nav{
		bottom: 0;
	}

}