-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfixed.css
More file actions
28 lines (24 loc) · 709 Bytes
/
fixed.css
File metadata and controls
28 lines (24 loc) · 709 Bytes
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
/*--- Extra Bootstrap Column Padding --*/
[class*="col-"] {
padding: 1rem;
}
/*--- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
margin-left: 0px!important;
margin-right: 0px!important;
}
/*============= IMAGE SLIDER =============*/
.carousel-item {
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*---Change Carousel Transition Speed --*/
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
display: block;
transition: -webkit-transform 1.2s ease;
transition: transform 1.2s ease;
transition: transform 1.2s ease,-webkit-transform 1.2s ease;
}