Difference between revisions of "MediaWiki:Common.css"

From VideoLAN Wiki
Jump to navigation Jump to search
(CSS class "widebox" will no longer centre text automatically. Use "widebox center" for this effect)
m (Fix last)
Line 11: Line 11:
 
     border: solid #999 1px;
 
     border: solid #999 1px;
 
     background: #F8F8F8;
 
     background: #F8F8F8;
    margin: 0.5em auto;
 
 
     clear: both;
 
     clear: both;
 
     padding: 2px;
 
     padding: 2px;

Revision as of 09:16, 23 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;
    clear: both;
    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%;
    color: black;
    background-color: #fcfcfc;
    border: 1px solid #ccc;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner-links-col1 {
    width: 11%;
    font-size: 95%;
    color: black;
    vertical-align: top;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner-links-col2 {
    width: 14%;
    font-size: 95%;
    vertical-align: top;
}
/* For [[Main Page]], [[Documentation:Documentation]], [[Knowledge Base]], [[VLC Developers Corner]] */
.banner-links-col3 {
    width: 18%;
    font-size: 95%;
    vertical-align: top;
}
/* General use */
div.plainlist ul > li {
    list-style: none none;
}
/* Creates two columns */
div.col2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
         -o-column-count: 2;
            column-count: 2;
}
/* Creates three columns */
div.col3 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
         -o-column-count: 3;
            column-count: 3;
}
/* Creates four columns */
div.col4 {
    -webkit-column-count: 4;
       -moz-column-count: 4;
         -o-column-count: 4;
            column-count: 4;
}
/* Creates five columns */
div.col5 {
    -webkit-column-count: 5;
       -moz-column-count: 5;
         -o-column-count: 5;
            column-count: 5;
}
/* Creates six columns */
div.col6 {
    -webkit-column-count: 6;
       -moz-column-count: 6;
         -o-column-count: 6;
            column-count: 6;
}
/* Creates seven columns */
div.col7 {
    -webkit-column-count: 7;
       -moz-column-count: 7;
         -o-column-count: 7;
            column-count: 7;
}