Skip to content

Instantly share code, notes, and snippets.

@shirokoweb
Last active January 12, 2018 19:11
Show Gist options
  • Save shirokoweb/27c3c882823febd4bc0d49df3b517d5b to your computer and use it in GitHub Desktop.
Save shirokoweb/27c3c882823febd4bc0d49df3b517d5b to your computer and use it in GitHub Desktop.
Custom css for owl carousel (to use ET fonts for arrows and placing them at the middle)
/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 David Deutsch
* Licensed under ()
*/
/*
* Default theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
color: #FFF;
font-weight: 600;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #fd3c3d;
display: inline-block;
cursor: pointer;
border-radius: 2px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
background: #181a1f;
color: #FFF;
text-decoration: none;
}
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default;
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 10px;
}
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline;
}
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
background: #fd3c3d;
}
.owl-prev,
.owl-next {
font-family: 'ETmodules';
position: absolute;
top: 50%;
}
.owl-prev {
left: -50px;
}
.owl-next {
left: -50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment