source: extensions/ExtendedDescription/template/nivoslider/nivo-slider.css @ 17349

Last change on this file since 17349 was 17349, checked in by mistic100, 12 years ago

improving slider display when mixing landscape and portrait photos (must use elastic=true if mixing panoramas)

File size: 2.0 KB
Line 
1/*
2 * jQuery Nivo Slider v3.0.1
3 * http://nivo.dev7studios.com
4 *
5 * Copyright 2012, Dev7studios
6 * Free to use and abuse under the MIT license.
7 * http://www.opensource.org/licenses/mit-license.php
8 */
9 
10/* The Nivo Slider styles */
11.slider-wrapper {
12        margin:0 auto;
13}
14.nivoSlider {
15        position:relative;
16        width:100%;
17        height:auto;
18        overflow: hidden;
19        margin: 0 auto;
20}
21.nivoSlider img {
22        position:absolute;
23        top:0px;
24        left:0px;
25}
26.nivo-main-image {
27        display: block !important;
28        position: relative !important; 
29        //width: 100% !important;
30        margin: 0 auto;
31}
32
33/* If an image is wrapped in a link */
34.nivoSlider a.nivo-imageLink {
35        position:absolute;
36        top:0px;
37        left:0px;
38        width:100%;
39        height:100%;
40        border:0;
41        padding:0;
42        margin:0;
43        z-index:6;
44        display:none;
45}
46/* The slices and boxes in the Slider */
47.nivo-slice {
48        display:block;
49        position:absolute;
50        z-index:5;
51        height:100%;
52        top:0;
53}
54.nivo-box {
55        display:block;
56        position:absolute;
57        z-index:5;
58        overflow:hidden;
59}
60.nivo-box img { display:block; }
61
62/* Caption styles */
63.nivo-caption {
64        position:absolute;
65        left:0px;
66        bottom:0px;
67        background:#000;
68        color:#fff;
69        width:100%;
70        z-index:8;
71        padding: 5px 10px;
72        opacity: 0.8;
73        overflow: hidden;
74        display: none;
75        -moz-opacity: 0.8;
76        filter:alpha(opacity=8);
77        -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
78        -moz-box-sizing: border-box;    /* Firefox, other Gecko */
79        box-sizing: border-box;         /* Opera/IE 8+ */
80}
81.nivo-caption p {
82        padding:5px;
83        margin:0;
84}
85.nivo-caption a {
86        display:inline !important;
87}
88.nivo-html-caption {
89    display:none;
90}
91/* Direction nav styles (e.g. Next & Prev) */
92.nivo-directionNav a {
93        position:absolute;
94        top:45%;
95        z-index:9;
96        cursor:pointer;
97}
98.nivo-prevNav {
99        left:0px;
100}
101.nivo-nextNav {
102        right:0px;
103}
104/* Control nav styles (e.g. 1,2,3...) */
105.nivo-controlNav {
106        text-align:center;
107        padding: 15px 0;
108}
109.nivo-controlNav a {
110        cursor:pointer;
111}
112.nivo-controlNav a.active {
113        font-weight:bold;
114}
Note: See TracBrowser for help on using the repository browser.