Created
September 8, 2017 11:13
-
-
Save patrykgruszka/44c7f867622b3cb368745c744c61c281 to your computer and use it in GitHub Desktop.
Bootstrap v3 Carousel unstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.carousel-unstyle { | |
.carousel-indicators { | |
position: static; | |
bottom: auto; | |
left: auto; | |
z-index: auto; | |
width: auto; | |
margin-left: 0; | |
padding-left: 0; | |
list-style: none; | |
text-align: left; | |
li { | |
display: block; | |
width: auto; | |
height: auto; | |
margin: 0; | |
text-indent: 0; | |
border: none; | |
border-radius: 0; | |
cursor: auto; | |
background-color: transparent; | |
} | |
} | |
.carousel-control { | |
position: static; | |
top: auto; | |
left: auto; | |
bottom: auto; | |
width: auto; | |
opacity: 1; | |
font-size: inherit; | |
color: inherit; | |
text-align: inherit; | |
text-shadow: none; | |
background-color: transparent; | |
&.left, | |
&.right { | |
background: none; | |
left: auto; | |
right: auto; | |
} | |
&:hover, | |
&:focus { | |
outline: none; | |
color: inherit; | |
text-decoration: none; | |
opacity: 1; | |
} | |
.icon-prev, | |
.icon-next, | |
.glyphicon-chevron-left, | |
.glyphicon-chevron-right { | |
position: static; | |
top: auto; | |
left: auto; | |
right: auto; | |
margin: 0; | |
z-index: auto; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment