diff options
Diffstat (limited to 'less')
| -rw-r--r-- | less/carousel.less | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/less/carousel.less b/less/carousel.less index 2dc050603..b321e5bb5 100644 --- a/less/carousel.less +++ b/less/carousel.less @@ -105,6 +105,31 @@ } } +// Carousel indicator pips +// ----------------------------- +.carousel-indicators { + position: absolute; + top: 15px; + right: 15px; + z-index: 5; + margin: 0; + list-style: none; + + li { + display: block; + float: left; + width: 10px; + height: 10px; + margin-left: 5px; + text-indent: -999px; + background-color: #ccc; + background-color: rgba(255,255,255,.25); + border-radius: 5px; + } + .active { + background-color: #fff; + } +} // Caption for text below images // ----------------------------- |
