Difference between revisions of "MediaWiki:Common.css"

From VideoLAN Wiki
Jump to navigation Jump to search
m (Even better place: move @media print to MediaWiki:Print.css)
(Adding div.col2 and div.col3, taken from MediaWiki:Monobook.css)
Line 50: Line 50:
 
     background-color: #fcfcfc;
 
     background-color: #fcfcfc;
 
     border: 1px solid #ccc;
 
     border: 1px solid #ccc;
 +
}
 +
div.col2 {
 +
  -moz-column-count: 2;
 +
    column-count: 2;
 +
}
 +
 +
div.col3 {
 +
    -moz-column-count: 3;
 +
    column-count: 3;
 
}
 
}

Revision as of 00:16, 3 March 2019

/* Styling links to www.VideoLan.org */ 
/*#bodyContent a.external, #bodyContent a[href^="http://www.videolan.org/"] {
    -moz-background-clip:border;
    -moz-background-inline-policy:continuous;
    -moz-background-origin:padding;
    background:transparent url(//www.videolan.org/favicon.ico) no-repeat scroll right center;
    padding-right:13px;
}*/
.widebox {
    width: 80%;
    border: solid #999 1px;
    background: #F8F8F8;
    margin: 0.5em auto;
    clear: both;
    text-align: center;
    padding: 2px;
}
.nowrap {
    white-space: nowrap;
}
/* pre tags do not clip content  */
#bodyContent pre {
    white-space: pre-wrap;
    word-break: break-all;
}
/* For [[VLC Features Formats]] and others */
.codec-table {
    font-size: small;
    text-align: center;
    width: 100%;
    margin: 1em auto 1em auto;
    border: 1px;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner-title {
    font-size: 162%;
    border: none;
    margin: 0;
    padding: .1em;
    color: #000;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner-subtitle {
    top: +0.2em;
    font-size: 95%;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner {
    width: 100%;
    background-color: #fcfcfc;
    border: 1px solid #ccc;
}
div.col2 {
   -moz-column-count: 2;
    column-count: 2;
}

div.col3 {
    -moz-column-count: 3;
    column-count: 3;
}