Database changes have finished applying - please report any issues you're (still) seeing to support@shoutwiki.com.

MediaWiki:Common.css

From Eureka Wiki
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
  1 /* CSS placed here will be applied to all skins */
  2 
  3 /* General purpose */
  4 
  5 /* CSS placed here will be applied to all skins */
  6 
  7 @font-face {
  8    font-family: Stylish;
  9     src: url('https://vignette.wikia.nocookie.net/24wikia/images/7/78/BankGothic.otf') format('opentype'), 
 10       url('https://images.wikia.nocookie.net/__cb20161004091533/24wikia/images/1/13/BankGothicLt.woff') format('woff'),url('https://images.wikia.nocookie.net/__cb20161004091533/24wikia/images/5/57/BankGothicLt.ttf') format('truetype')
 11 }
 12 
 13 #content h2,
 14 #content h3,
 15 #content h4,
 16 #content h5,
 17 #content h6,
 18 #content #firstHeading {
 19 	font-family: 'Stylish', sans-serif;
 20 }
 21 
 22 /* body { 
 23     font-family:Trebuchet MS, sans-serif;
 24 } */
 25 
 26 /* ### Portal pages appearance ### */
 27  
 28 .portals {
 29    background-color: #A9A9A9;
 30    border: 1px solid #FF0000;
 31    vertical-align: top;
 32    color: #000;
 33    padding: 12px 15px 12px 15px;
 34    -moz-border-radius: 10px;
 35    -webkit-border-radius: 10px;
 36    -khtml-border-radius: 10px;
 37    border-radius: 10px;
 38 }
 39  
 40 .portals h2 {
 41    margin: 0;
 42    background: #4F4F4F;
 43    font-size: 150%;
 44    font-weight: bold;
 45    border: 1px solid #FF0000;
 46    text-align:left ;color:#FFFFFF;
 47    font-family: 'Stylish', sans-serif;
 48    padding: 0.2em 0.4em;
 49    -moz-border-radius: 5px;
 50    -webkit-border-radius: 5px;
 51    -khtml-border-radius: 5px;
 52    border-radius: 5px;
 53    margin: .3em 0 .5em 0;
 54 }
 55 
 56 /* For template documentation */
 57 .template-documentation {
 58     clear: both;
 59     margin: 1em 0 0 0;
 60     border: 1px solid #aaa; 
 61     background-color: #ecfcf4; 
 62     padding: 1em;
 63 }
 64 
 65 /* Style for horizontal lists (separator following item).
 66    @source mediawiki.org/wiki/Snippets/Horizontal_lists
 67    @revision 8 (2016-05-21)
 68    @author [[User:Edokter]]
 69  */
 70 .hlist dl,
 71 .hlist ol,
 72 .hlist ul {
 73     margin: 0;
 74     padding: 0;
 75 }
 76 /* Display list items inline */
 77 .hlist dd,
 78 .hlist dt,
 79 .hlist li {
 80     margin: 0;
 81     display: inline;
 82 }
 83 /* Display nested lists inline */
 84 .hlist.inline,
 85 .hlist.inline dl,
 86 .hlist.inline ol,
 87 .hlist.inline ul,
 88 .hlist dl dl, .hlist dl ol, .hlist dl ul,
 89 .hlist ol dl, .hlist ol ol, .hlist ol ul,
 90 .hlist ul dl, .hlist ul ol, .hlist ul ul {
 91     display: inline;
 92 }
 93 /* Hide empty list items */
 94 .hlist .mw-empty-li {
 95     display: none;
 96 }
 97 /* Generate interpuncts */
 98 .hlist dt:after {
 99     content: ": ";
100 }
101 .hlist dd:after,
102 .hlist li:after {
103     content: " · ";
104     font-weight: bold;
105 }
106 .hlist dd:last-child:after,
107 .hlist dt:last-child:after,
108 .hlist li:last-child:after {
109     content: none;
110 }
111 /* Add parentheses around nested lists */
112 .hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
113 .hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
114 .hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
115     content: " (";
116     font-weight: normal;
117 }
118 .hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
119 .hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
120 .hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
121     content: ")";
122     font-weight: normal;
123 }
124 /* Put ordinals in front of ordered list items */
125 .hlist ol {
126     counter-reset: listitem;
127 }
128 .hlist ol > li {
129     counter-increment: listitem;
130 }
131 .hlist ol > li:before {
132     content: " " counter(listitem) "\a0";
133 }
134 .hlist dd ol > li:first-child:before,
135 .hlist dt ol > li:first-child:before,
136 .hlist li ol > li:first-child:before {
137     content: " (" counter(listitem) "\a0";
138 }
139 
140 /* Default styling for Navbar template */
141 .navbar {
142     display: inline;
143     font-size: 88%;
144     font-weight: normal;
145 }
146 .navbar ul {
147     display: inline;
148     white-space: nowrap;
149 }
150 .mw-body-content .navbar ul {
151     line-height: inherit;
152 }
153 .navbar li {
154     word-spacing: -0.125em;
155 }
156 .navbar.mini li abbr[title] {
157   font-variant: small-caps;
158   border-bottom: none;
159   text-decoration: none;
160   cursor: inherit;
161 }
162 /* Navbar styling when nested in infobox and navbox */
163 .infobox .navbar {
164     font-size: 100%;
165 }
166 .navbox .navbar {
167     display: block;
168     font-size: 100%;
169 }
170 .navbox-title .navbar {
171     /* @noflip */
172     float: left;
173     /* @noflip */
174     text-align: left;
175     /* @noflip */
176     margin-right: 0.5em;
177 }
178 
179 /* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
180 th.mbox-text, td.mbox-text {   /* The message body cell(s) */
181     border: none; 
182     padding: 0.25em 0.9em;     /* 0.9em left/right */
183     width: 100%;               /* Make all mboxes the same width regardless of text length */
184 }
185 td.mbox-image {                /* The left image cell */
186     border: none; 
187     padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
188     text-align: center; 
189 }
190 td.mbox-imageright {           /* The right image cell */
191     border: none;
192     padding: 2px 0.9em 2px 0;  /* 0px left, 0.9em right */
193     text-align: center; 
194 }
195 td.mbox-empty-cell {           /* An empty narrow cell */
196     border: none;
197     padding: 0px;
198     width: 1px;
199 }
200 
201 /* Article message box styles */
202 table.ambox {
203     margin: 0px 10%;                  /* 10% = Will not overlap with other elements */
204     border: 1px solid #aaa; 
205     border-left: 10px solid #1e90ff;  /* Default "notice" blue */
206     background: #fbfbfb; 
207 }
208 table.ambox + table.ambox {      /* Single border between stacked boxes. */
209     margin-top: -1px;
210 }
211 .ambox th.mbox-text, 
212 .ambox td.mbox-text {            /* The message body cell(s) */
213     padding: 0.25em 0.5em;       /* 0.5em left/right */
214 }
215 .ambox td.mbox-image {           /* The left image cell */
216     padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
217 }
218 .ambox td.mbox-imageright {      /* The right image cell */
219     padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
220 }
221  
222 table.ambox-notice {
223     border-left: 10px solid #1e90ff;    /* Blue */
224 }
225 table.ambox-speedy {
226     border-left: 10px solid #b22222;    /* Red */
227     background: #fee;                   /* Pink */
228 }
229 table.ambox-delete {
230     border-left: 10px solid #b22222;    /* Red */
231 }
232 table.ambox-content {
233     border-left: 10px solid #f28500;    /* Orange */
234 }
235 table.ambox-style {
236     border-left: 10px solid #f4c430;    /* Yellow */
237 }
238 table.ambox-move {
239     border-left: 10px solid #9932cc;    /* Purple */
240 }
241 table.ambox-protection {
242     border-left: 10px solid #bba;       /* Gray-gold */
243 }
244 
245 /* Footer and header message box styles */
246 table.fmbox {
247     clear: both;
248     margin: 0.2em 0;
249     width: 100%;
250     border: 1px solid #aaa;
251     background: #f9f9f9;     /* Default "system" gray */
252 }
253 table.fmbox-system {
254     background: #f9f9f9;
255 }
256 table.fmbox-warning {
257     border: 1px solid #bb7070;  /* Dark pink */
258     background: #ffdbdb;        /* Pink */
259 }
260 table.fmbox-editnotice {
261     background: transparent;
262 }
263 /* Div based "warning" style fmbox messages. */
264 div.mw-warning-with-logexcerpt,
265 div.mw-lag-warn-high,
266 div.mw-cascadeprotectedwarning,
267 div#mw-protect-cascadeon {
268     clear: both;
269     margin: 0.2em 0;
270     border: 1px solid #bb7070;
271     background: #ffdbdb;
272     padding: 0.25em 0.9em;
273 }
274 
275 /* Other pages message box styles */
276 table.ombox {
277     margin: 4px 10%; 
278     border-collapse: collapse; 
279     border: 1px solid #aaa;       /* Default "notice" gray */
280     background: #f9f9f9;
281 }
282  
283 table.ombox-notice {
284     border: 1px solid #aaa;       /* Gray */
285 }
286 table.ombox-speedy {
287     border: 2px solid #b22222;    /* Red */
288     background: #fee;             /* Pink */
289 }
290 table.ombox-delete {
291     border: 2px solid #b22222;    /* Red */
292 }
293 table.ombox-content {
294     border: 1px solid #f28500;    /* Orange */
295 }
296 table.ombox-style {
297     border: 1px solid #f4c430;    /* Yellow */
298 }
299 table.ombox-move {
300     border: 1px solid #9932cc;    /* Purple */
301 }
302 table.ombox-protection {
303     border: 2px solid #bba;       /* Gray-gold */
304 }
305 
306 /* PORTAL BANNERS */
307 
308 /* default style for portal banners
309    used in Template:Portal metalink and Template:Portal
310  */
311 
312 #banner-portal {
313   border: solid #AAAAAA 1px;
314   padding: 4px;
315   background-color: #F9F9F9;
316   text-align: center;
317   margin-top: 1em;
318   margin-left: 0;
319   clear: both;
320 }
321 
322 #list-portal {
323   padding: 4px;
324   margin-left: 0;
325   clear: both;
326 }
327 
328 #list-portal li {
329   display: inline
330 }
331 
332 #banner-portal li {
333   display: inline;
334 }
335 
336 .banner-portal-element {
337   white-space: nowrap;
338   margin: auto 1.5em;
339 }
340 
341 .banner-portal-icon {
342   margin-right: 0.5em;
343 }
344 
345 .banner-portal-text {
346   font-weight: bold;
347 }
348 
349 /**
350  * Infobox
351  * See : [[w:Utilisateur:Antaya/Infobox V2]]
352  */
353  
354 .infobox {
355   /* monobookocentré debut */
356   background: #f9f9f9;
357   color: #000;
358   font-size: 90%;
359   line-height: 1.1em;
360   float: right;
361   clear: right;
362   /* haut droite bas gauche */
363   margin: 0 0 .5em 1em;
364   width: 300px;
365   border: 1px solid #FF0000;
366   padding: 0.1em;
367 }
368  
369 .infobox th {
370   vertical-align: super;
371   text-align: left;
372 }
373  
374 .infobox .header {
375   height: 45px;
376   vertical-align: middle;
377   text-align: center;
378   font-size: 150%;
379   font-weight: bolder;
380   line-height: 1.2em;
381   color: #000;
382 }
383  
384 .infobox .media {
385   /* css V2 pour [[Modèle: Son]], etc. */
386   height: 35px;
387   vertical-align: middle;
388   text-align: center;
389   font-weight: bolder;
390   color: #000;
391 }
392  
393 /* graphiques transparents d'entêtes des infobox V2 */
394 .header.default       {}
395  
396 .header.aerostat         {background: url("http://upload.wikimedia.org/wikipedia/commons/7/7e/Picto_infobox_aerostat.png")               no-repeat top right;}
397 .header.author           {background: url("http://upload.wikimedia.org/wikipedia/commons/1/1e/Picto_infobox_auteur.png")                 no-repeat top right;} 
398 .header.comics           {background: url("http://upload.wikimedia.org/wikipedia/commons/2/2c/Picto_infobox_comicballoon.png")           no-repeat top right;}
399 .header.beer             {background: url("http://upload.wikimedia.org/wikipedia/commons/0/04/Picto_infobox_beer.png")                   no-repeat top right;}
400 .header.canada           {background: url("http://upload.wikimedia.org/wikipedia/commons/6/6a/Picto_infobox_Canada.png")                 no-repeat top right;}
401 .header.cardinal         {background: url("http://upload.wikimedia.org/wikipedia/commons/0/03/Picto_infobox_cardinal.png")               no-repeat top right;}
402 .header.castel           {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5c/Picto_infobox_chateau.png")                no-repeat top right;}
403 .header.cinema           {background: url("http://upload.wikimedia.org/wikipedia/commons/e/ea/Picto_infobox_cinema.png")                 no-repeat top right;}
404 .header.communication    {background: url("http://upload.wikimedia.org/wikipedia/commons/a/a2/Picto_infobox_antenna.png")                no-repeat top right;}
405 .header.disney           {background: url("http://upload.wikimedia.org/wikipedia/commons/d/d3/Picto_infobox_Disney.png")                 no-repeat top right;}
406 .header.antic-egypt      {background: url("http://upload.wikimedia.org/wikipedia/commons/c/cc/Picto_infobox_ancient_Egypt.png")          no-repeat top right;}
407 .header.bishop           {background: url("http://upload.wikimedia.org/wikipedia/commons/b/b3/Picto_infobox_bishop.png")                 no-repeat top right;}
408 .header.helicoptere      {background: url("http://upload.wikimedia.org/wikipedia/commons/f/fa/Picto_infobox_helicopter.png")             no-repeat top right;}
409 .header.human            {background: url("http://upload.wikimedia.org/wikipedia/commons/8/82/Picto_infobox_manwoman.png")               no-repeat top right;}
410 .header.computer         {background: url("http://upload.wikimedia.org/wikipedia/commons/a/ae/Picto-infoboxinfo.png")                    no-repeat top right;}
411 .header.israel-judaism   {background: url("http://upload.wikimedia.org/wikipedia/commons/a/a5/Picto_infobox_israel-judaisme.png")        no-repeat top right;}
412 .header.game             {background: url("http://upload.wikimedia.org/wikipedia/commons/9/90/Picto_infobox_Game.png")                   no-repeat top right;}
413 .header.rpg              {background: url("http://upload.wikimedia.org/wikipedia/commons/d/d8/Picto_infobox_Jeu_de_rôle.png")            no-repeat top right;}
414 .header.videogame        {background: url("http://upload.wikimedia.org/wikipedia/commons/2/2d/Picto_infobox_gamepad.png")                no-repeat bottom right;}
415 .header.macintosh        {background: url("http://upload.wikimedia.org/wikipedia/commons/2/20/Picto_infobox_Macintosh.png")              no-repeat top right;}
416 .header.map              {background: url("http://upload.wikimedia.org/wikipedia/commons/7/7a/Picto_infobox_map.png")                    no-repeat top right;}
417 .header.medecine         {background: url("http://upload.wikimedia.org/wikipedia/commons/2/23/Picto_infobox_med.png")                    no-repeat top right;}
418 .header.mets             {background: url("http://upload.wikimedia.org/wikipedia/commons/a/aa/Picto_infobox_mets.png")                   no-repeat top right;}
419 .header.montreal-metro   {background: url("http://upload.wikimedia.org/wikipedia/fr/b/ba/Picto_infobox_Mtl_metro.png")                   no-repeat top right;}
420 .header.montreal-train   {background: url("http://upload.wikimedia.org/wikipedia/fr/9/99/Picto_infobox_Mtl_train.png")                   no-repeat top right;}
421 .header.plane-engine     {background: url("http://upload.wikimedia.org/wikipedia/commons/9/9c/Picto_Infobox_moteur_d%27avion.png")       no-repeat top right;}
422 .header.music            {background: url("http://upload.wikimedia.org/wikipedia/commons/6/60/Picto_infobox_music.png")                  no-repeat top right;}
423 .header.papyrus          {background: url("http://upload.wikimedia.org/wikipedia/commons/1/1b/Picto_infobox_papyrus.png")                no-repeat top right;}
424 .header.paralympics      {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5e/Picto_infobox_Paralympics.png")            no-repeat top right;}
425 .header.character        {background: url("http://upload.wikimedia.org/wikipedia/commons/3/37/Picto_infobox_masks.png")                  no-repeat top right;}
426 .header.people           {background: url("http://upload.wikimedia.org/wikipedia/commons/4/48/Picto_infobox_character.png")              no-repeat top right;}
427 .header.planeur          {background: url("http://upload.wikimedia.org/wikipedia/commons/5/54/Picto_infobox_planeur.png")                no-repeat top right;}
428 .header.planet           {background: url("http://upload.wikimedia.org/wikipedia/commons/7/71/Picto_infobox_astronomy.png")              no-repeat top right;}
429 .header.press            {background: url("http://upload.wikimedia.org/wikipedia/commons/2/23/Picto_infobox_journal.png")                no-repeat top right;}
430 .header.projet           {background: url("http://upload.wikimedia.org/wikipedia/commons/c/cb/Picto_infobox_tools.png")                  no-repeat top right;}
431 .header.quebec           {background: url("http://upload.wikimedia.org/wikipedia/commons/2/21/Picto_infobox_Quebec.png")                 no-repeat top right;}
432 .header.research         {background: url("http://upload.wikimedia.org/wikipedia/commons/c/c1/Picto_infobox_detective.png")              no-repeat top right;}
433 .header.rome-antique     {background: url("http://upload.wikimedia.org/wikipedia/commons/2/2e/Picto_infobox_Roman_millitary_banner.png") no-repeat top right;}
434 .header.science-fiction  {background: url("http://upload.wikimedia.org/wikipedia/commons/e/ed/Picto_infobox_fliyingsaucer.png")          no-repeat top right;}
435 .header.sport            {background: url("http://upload.wikimedia.org/wikipedia/commons/8/8e/Picto_infobox_Olympic.png")                no-repeat top right;}
436 .header.sport-automobile {background: url("http://upload.wikimedia.org/wikipedia/commons/a/af/Picto_infobox_sport_auto.png")             no-repeat top right;}
437 .header.television       {background: url("http://upload.wikimedia.org/wikipedia/commons/8/84/Picto_infobox_HD_television.png")          no-repeat top right;}
438 .header.stamp            {background: url("http://upload.wikimedia.org/wikipedia/commons/b/b3/Picto_infobox_Stamps.png")                 no-repeat top right;}
439 .header.train            {background: url("http://upload.wikimedia.org/wikipedia/commons/4/44/Picto_infobox_train.png")                  no-repeat top right;}
440 .header.european-union   {background: url("http://upload.wikimedia.org/wikipedia/commons/c/c0/Picto_Infobox_Europe.png")                 no-repeat top right;}
441 .header.university       {background: url("http://upload.wikimedia.org/wikipedia/commons/4/42/Picto_infobox_book.png")                   no-repeat top right;}
442  
443  
444 .media.audio             {background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/35px-Gnome-speakernotes.png") no-repeat top left;} 
445 .media.video             {background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Tango-video-x-generic.png/35px-Tango-video-x-generic.png") no-repeat top left;}
446 
447 
448 /* Effets dégradés : utilisables pour un effet ombragé dans les modèles de cadre (par exemple : [[Portail:Montréal/Cadre]]). Ceux-ci ne doivent pas dépasser 43 pixels de hauteur au risque d'y voir un effet indésirable. Note : les effets en PNG ne sont pas résolus par IE6 et moins. Dernière mise à jour : 4 février 2010 */
449 /* Ombragé, fond transparent (png) */
450 .degrade       { background-image: url("//upload.wikimedia.org/wikipedia/commons/f/fb/Gradient_43px.png"); background-position:top; background-repeat:repeat-x;}
451 .degrade_rev   { background-image: url("//upload.wikimedia.org/wikipedia/commons/6/61/Gradient_reversed_43px.png"); background-position:top; background-repeat:repeat-x;}
452 /* Ombragé, gris fond blanc (jpg) */
453 .ombre         { background-image: url("//upload.wikimedia.org/wikipedia/commons/e/ea/BGblue1_phixr.jpg"); background-position:top; background-repeat:repeat-x;}
454 .ombre_pale    { background-image: url("//upload.wikimedia.org/wikipedia/commons/0/06/BGblue2_phixr.jpg"); background-position:top; background-repeat:repeat-x;}
455 /* Coloré, bleu/rouge fond blanc (jpg) */
456 .ombre_bl     { background-image: url("//upload.wikimedia.org/wikipedia/commons/3/3e/BGblue1.jpg"); background-position:top; background-repeat:repeat-x;}
457 .ombre_blpale { background-image: url("//upload.wikimedia.org/wikipedia/commons/f/f7/BGblue2.jpg"); background-position:top; background-repeat:repeat-x;}
458 .ombre_rg     { background-image: url("//upload.wikimedia.org/wikipedia/commons/3/30/BGred1.jpg"); background-position:top; background-repeat:repeat-x;}
459 .ombre_rgpale { background-image: url("//upload.wikimedia.org/wikipedia/commons/8/8f/BGred2.jpg"); background-position:top; background-repeat:repeat-x;}
460 
461 /* Default style for navigation boxes */
462 .navbox {                     /* Navbox container style */
463     border: 1px solid #ff0000;
464     width: 100%;
465     margin: auto;
466     clear: both;
467     font-size: 88%;
468     text-align: center;
469     padding: 1px;
470 }
471 .navbox-inner,
472 .navbox-subgroup {
473     width: 100%;
474 }
475 .navbox th,
476 .navbox-title,
477 .navbox-abovebelow {
478     text-align: center;       /* Title and above/below styles */
479     padding-left: 1em;
480     padding-right: 1em;
481 }
482 th.navbox-group {             /* Group style */
483     white-space: nowrap;
484     /* @noflip */
485     text-align: right;
486 }
487 .navbox,
488 .navbox-subgroup {
489     background: #fdfdfd;      /* Background color */
490 }
491 .navbox-list {
492     border-color: #fdfdfd;    /* Must match background color */
493 }
494 .navbox th,
495 .navbox-title {
496     background: #B0C4DE;      /* Level 1 color */
497 }
498 .navbox-abovebelow,
499 th.navbox-group,
500 .navbox-subgroup .navbox-title {
501     background: #ADD8E6;      /* Level 2 color */
502 }
503 .navbox-subgroup .navbox-group,
504 .navbox-subgroup .navbox-abovebelow {
505     background: #D3D3D3;      /* Level 3 color */
506 }
507 .navbox-even {
508     background: #f7f7f7;      /* Even row striping */
509 }
510 .navbox-odd {
511     background: transparent;  /* Odd row striping */
512 }
513 table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
514     margin-top: -1px;          /* (doesn't work for IE6, but that's okay)       */
515 }
516 .navbox .hlist td dl,
517 .navbox .hlist td ol,
518 .navbox .hlist td ul,
519 .navbox td.hlist dl,
520 .navbox td.hlist ol,
521 .navbox td.hlist ul {
522     padding: 0.125em 0;       /* Adjust hlist padding in navboxes */
523 }
524 ol + table.navbox,
525 ul + table.navbox {
526     margin-top: 0.5em;        /* Prevent lists from clinging to navboxes */
527 }
528 
529 /* Default styling for Navbar template */
530 .navbar {
531     display: inline;
532     font-size: 88%;
533     font-weight: normal;
534 }
535 .navbar ul {
536     display: inline;
537     white-space: nowrap;
538 }
539 .navbar li {
540     word-spacing: -0.125em;
541 }
542 .navbar.mini li span {
543   font-variant: small-caps;
544 }
545 /* Navbar styling when nested in infobox and navbox */
546 .infobox .navbar {
547     font-size: 100%;
548 }
549 .navbox .navbar {
550     display: block;
551     font-size: 100%;
552 }
553 .navbox-title .navbar {
554     /* @noflip */
555     float: left;
556     /* @noflip */
557     text-align: left;
558     /* @noflip */
559     margin-right: 0.5em;
560     width: 6em;
561 }
562 
563 /* 'show'/'hide' buttons created dynamically by the CollapsibleTables javascript
564    in [[MediaWiki:Common.js]] are styled here so they can be customised. */
565 .collapseButton {
566     /* @noflip */
567     float: right;
568     font-weight: normal;
569     /* @noflip */
570     margin-left: 0.5em;
571     /* @noflip */
572     text-align: right;
573     width: auto;
574 }
575 /* In navboxes, the show/hide button balances the v·d·e links
576    from [[Template:Navbar]], so they need to be the same width. */
577 .navbox .collapseButton {
578     width: 6em;
579 }
580  
581 /* Styling for JQuery makeCollapsible, matching that of collapseButton */
582 .mw-collapsible-toggle {
583     font-weight: normal;
584     /* @noflip */
585     text-align: right;
586 }
587 .navbox .mw-collapsible-toggle {
588     width: 6em;
589 }
590 
591 /* Category bar's overlook */
592 
593 #catlinks {
594         border: 1px solid #FF0000;
595 	background-color: #A9A9A9;
596 	padding: 5px;
597 	clear: both;
598         -moz-border-radius: 4px;
599         -webkit-border-radius: 4px;
600         -khtml-border-radius: 4px;
601         border-radius: 4px;
602 }
603 
604 /* Default styling for Navbar template */
605 .navbar {
606     display: inline;
607     font-size: 88%;
608     font-weight: normal;
609 }
610 .navbar ul {
611     display: inline;
612     white-space: nowrap;
613 }
614 .mw-body-content .navbar ul {
615     line-height: inherit;
616 }
617 .navbar li {
618     word-spacing: -0.125em;
619 }
620 .navbar.mini li abbr[title] {
621   font-variant: small-caps;
622   border-bottom: none;
623   text-decoration: none;
624   cursor: inherit;
625 }
626 
627 .transcript {
628 	border: 1px solid #A9A9A9;
629 	padding: 5px 5px 5px 5px;
630 	margin-top: 10px;
631 	margin-bottom: 10px;
632 }
633 
634 .transcript command {
635 	background-color: #DCDCDC;
636 	width: auto;
637 	padding: 5px 5px 5px 5px;
638 }
639 
640 .gallery .mw-gallery-traditional {
641 	margin: 0;
642 }