source: extensions/Shadogo/trunk/libs/mediaboxAdvanced_1_5_x/themes/smooth/style.css @ 14986

Last change on this file since 14986 was 14986, checked in by binaryworld, 12 years ago

v0.2.0

File size: 7.5 KB
Line 
1                /*      mediaboxAdvanced Smooth theme   */
2                /*      version 2.6 - June 2011                 */
3                /*      for mediaboxAdvanced v.1.5.x    */
4
5                /*      Overlay background styling      */
6
7#mbOverlay {
8        position: fixed;
9        z-index: 9998;
10        top: 0;
11        left: 0;
12        width: 100%;
13        height: 100%;
14        background-color: #222;
15        cursor: pointer;
16}
17
18                /*      Fixes for older or limited browsers     */
19
20#mbOverlay.mbOverlayOpaque {
21        background: transparent url(images/80.png) repeat;
22}
23
24#mbOverlay.mbOverlayAbsolute {
25        position: absolute;
26}
27
28#mbOverlay.mbMobile {
29        position: absolute;
30        background-color: transparent;
31}
32
33#mbBottom.mbMobile {
34        line-height: 24px;
35        font-size: 16px;
36}
37
38                /*      Overlay panel styling   */
39
40#mbCenter {
41        position: absolute;
42        z-index: 9999;
43        left: 50%;
44        -webkit-border-radius: 10px;
45        -khtml-border-radius: 10px;
46        -moz-border-radius: 10px;
47        border-radius: 10px;
48        background-color: #bbb; /* for non-css3 browsers */
49        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#aaaaaa'); /* IE 5.5 - 7 */
50        -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#aaaaaa'); /* IE 8 */
51        background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#aaa));
52        background: -khtml-gradient(linear, left top, left bottom, from(#ddd), to(#aaa));
53        background: -moz-linear-gradient(top,  #ddd,  #aaa);
54        background: -o-linear-gradient(top,  #ddd,  #aaa);
55        background: linear-gradient(top,  #ddd,  #aaa);
56        border: 1px solid #fff;
57        border-top-color: #fff;
58        border-bottom-color: #ccc;
59        border-right-width: 0px;
60        border-left-width: 0px;
61        -webkit-box-shadow: 0px 4px 24px rgba(0,0,0,0.4);
62        -khtml-box-shadow: 0px 4px 24px rgba(0,0,0,0.4);
63        -moz-box-shadow: 0px 4px 24px rgba(0,0,0,0.4);
64        box-shadow: 0px 4px 24px rgba(0,0,0,0.4);
65        padding: 10px;
66        text-shadow: rgba(255,255,255,0.5) 0 1px 1px;
67}
68
69#mbCenter.mbLoading {
70/*      background: #000 url(/images/mediabox/MinimalLoading.gif) no-repeat center;
71/*      This style is applied only during animation.    */
72/*      For example, the next lines turn off shadows    */
73/*      improving browser performance on slow systems.  */
74/*      To leave shadows on, just remove the following: */
75        -webkit-box-shadow: none;
76        -khtml-box-shadow: none;
77        -moz-box-shadow: none;
78        box-shadow: none;
79}
80
81#mbMedia {
82        position: relative;
83        left: 0;
84        top: 0;
85        -webkit-border-radius: 4px;
86        -khtml-border-radius: 4px;
87        -moz-border-radius: 4px;
88        border-radius: 4px;
89
90                /*      Inline content styling  */
91
92        font-family: Myriad, Verdana, Arial, Helvetica, sans-serif;
93        line-height: 20px;
94        font-size: 12px;
95        color: #000;
96        text-align: left;
97        background-position: center center;
98        background-repeat: no-repeat;
99}
100
101
102#mbAudio {
103        padding: 0 0 2px;
104        -webkit-border-radius: 4px;
105        -khtml-border-radius: 4px;
106        -moz-border-radius: 4px;
107        border-radius: 4px;
108        background-color: #999; /* for non-css3 browsers */
109        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#cccccc'); /* IE 5.5 - 7 */
110        -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#cccccc'); /* IE 8 */
111        background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#aaa));
112        background: -khtml-gradient(linear, left top, left bottom, from(#888), to(#aaa));
113        background: -moz-linear-gradient(top,  #999,  #ccc);
114        background: -o-linear-gradient(top,  #999,  #ccc);
115        background: linear-gradient(top,  #999,  #ccc);
116        border: 1px solid #fff;
117        border-top-color: #777;
118        border-bottom-color: #eee;
119        border-right-width: 0px;
120        border-left-width: 0px;
121        height: 20px;
122}
123
124                /*      Title, Caption and Button styling       */
125
126#mbBottom {
127        line-height: 20px;
128        font-size: 12px;
129        font-family: Myriad, Verdana, Arial, Helvetica, sans-serif;
130        text-align: left;
131        color: #444;
132        min-height: 20px;
133        padding: 10px 0 0;
134}
135
136#mbTitle, #mbPrevLink, #mbNextLink, #mbCloseLink,
137#mbHdLink, #mbDownloadLink, #mbFavoriteLink, #mbBasketLink {
138        display: inline;
139        color: #000;
140        font-weight: bold;
141}
142
143#mbNumber {
144        display: inline;
145        color: #444;
146/*      line-height: 0.8em; */
147        font-size: 0.8em;
148        margin: auto 10px;
149}
150
151#mbCaption {
152        display: block;
153        color: #444;
154        line-height: 1.6em;
155        font-size: 0.8em;
156}
157
158#mbPrevLink, #mbNextLink, #mbCloseLink,
159#mbHdLink, #mbDownloadLink, #mbFavoriteLink, #mbBasketLink {
160        float: right;
161        outline: none;
162        font-weight: normal;
163        margin: 0 0 0 10px;
164        padding: 4px 2px;
165}
166
167#mbPrevLink b, #mbNextLink b, #mbCloseLink b,
168#mbHdLink b, #mbDownloadLink b, #mbFavoriteLink b, #mbBasketLink b {
169        color: #222;
170        font-weight: bold;
171        text-decoration: underline;
172}
173
174#mbPrevLink big, #mbNextLink big, #mbCloseLink big,
175#mbHdLink big, #mbDownloadLink big, #mbFavoriteLink big, #mbBasketLink big {
176        color: #222;
177        font-size: 1.6em;
178        line-height: 0.6em;
179        font-weight: bold;
180}
181
182#mbBottom a, #mbBottom a:link, #mbBottom a:visited {
183        text-decoration: none;
184        color: #222;
185        -webkit-border-radius: 4px;
186        -khtml-border-radius: 4px;
187        -moz-border-radius: 4px;
188        border-radius: 4px;
189}
190
191#mbBottom a:hover {
192        color: #000;
193        text-shadow: rgba(255,255,255,1.0) 0 1px 1px;
194        background-color: #ccc; /* for non-css3 browsers */
195}
196
197#mbBottom a:active {
198        color: #000;
199        text-shadow: rgba(255,255,255,1.0) 0 1px 1px;
200        background-color: #999; /* for non-css3 browsers */
201        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#cccccc'); /* IE 5.5 - 7 */
202        -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#cccccc'); /* IE 8 */
203        background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#aaa));
204        background: -khtml-gradient(linear, left top, left bottom, from(#888), to(#aaa));
205        background: -moz-linear-gradient(top,  #999,  #ccc);
206        background: -o-linear-gradient(top,  #999,  #ccc);
207        background: linear-gradient(top,  #999,  #ccc);
208        border: 1px solid #fff;
209        border-top-color: #777;
210        border-bottom-color: #eee;
211        border-right-width: 0px;
212        border-left-width: 0px;
213}
214
215                /*      Error message styling   */
216
217#mbError {
218        position: relative;
219        font-family: Myriad, Verdana, Arial, Helvetica, sans-serif;
220        line-height: 20px;
221        font-size: 12px;
222        color: #000;
223        text-align: center;
224        border: 10px solid #700;
225        padding: 10px 10px 10px;
226        margin: 20px;
227        -webkit-border-radius: 5px;
228        -khtml-border-radius: 5px;
229        -moz-border-radius: 5px;
230        border-radius: 5px;
231}
232
233#mbError a, #mbError a:link, #mbError a:visited, #mbError a:hover, #mbError a:active {
234        color: #d00;
235        font-weight: bold;
236        text-decoration: underline;
237}
238
239/**
240/* Shadogo
241/*
242/**/
243
244#mbFavoriteLink.disabled-link, #mbFavoriteLink.disabled-link:link, #mbFavoriteLink.disabled-link:visited, #mbFavoriteLink.disabled-link:active, #mbFavoriteLink.disabled-link:hover,
245#mbFavoriteLink.disabled-link b, #mbFavoriteLink.disabled-link:link b, #mbFavoriteLink.disabled-link:visited b, #mbFavoriteLink.disabled-link:active b, #mbFavoriteLink.disabled-link:hover b,
246#mbFavoriteLink.disabled-link big, #mbFavoriteLink.disabled-link:link big, #mbFavoriteLink.disabled-link:visited big, #mbFavoriteLink.disabled-link:active big, #mbFavoriteLink.disabled-link:hover big  {
247        color: #999;
248        font-weight: normal;
249        font-style: oblique;   
250        text-decoration: none;
251}
252
253#mbBasketLink.disabled-link, #mbBasketLink.disabled-link:link, #mbBasketLink.disabled-link:visited, #mbBasketLink.disabled-link:active, #mbBasketLink.disabled-link:hover,
254#mbBasketLink.disabled-link b, #mbBasketLink.disabled-link:link b, #mbBasketLink.disabled-link:visited b, #mbBasketLink.disabled-link:active b, #mbBasketLink.disabled-link:hover b,
255#mbBasketLink.disabled-link big, #mbBasketLink.disabled-link:link big, #mbBasketLink.disabled-link:visited big, #mbBasketLink.disabled-link:active big, #mbBasketLink.disabled-link:hover big  {
256        color: #999;
257        font-weight: normal;
258        font-style: oblique;   
259        text-decoration: none;
260}
Note: See TracBrowser for help on using the repository browser.