MediaWiki:Common.css: Difference between revisions

From IAMC-Documentation
Jump to navigation Jump to search
No edit summary
No edit summary
Line 55: Line 55:


li.rc-standard:before {
li.rc-standard:before {
     content: "☐"; /* Insert content that looks like bullets */
     content: ☐; /* Insert content that looks like bullets */
     padding-right: 8px;
     padding-right: 8px;
}
}
Line 65: Line 65:


li.rc-selected:before {
li.rc-selected:before {
     content: "☑"; /* Insert content that looks like bullets */
     content: ☑; /* Insert content that looks like bullets */
     padding-right: 8px;
     padding-right: 8px;
}
}
Line 74: Line 74:


li.rc-spec:before {
li.rc-spec:before {
     content: "☑"; /* Insert content that looks like bullets */
     content: ☑; /* Insert content that looks like bullets */
     padding-right: 8px;
     padding-right: 8px;
}
}


li.rc-spec {
li.rc-spec {
   color:blue;
   color:DarkBlue;
   font-weight: bold;
   font-weight: bold;
}
}

Revision as of 10:26, 11 October 2016

/* CSS placed here will be applied to all skins */
.rc-row {
   clear:both; 
   width:100%; 
   margin-bottom:15px;
   vertical-align:top;
}

.rc-title {
   clear:left; 
   float:left;
   width:150px; 
   text-align:right;
   font-weight: bold;
}
.rc-data {
   float:left;
   margin-left:15px;
   width:530px;
}

ul.rc-data, ol.rc-data
{  
   margin-bottom:15px;
   -webkit-column-count:2; 
   -moz-column-count: 2; 
   column-count: 2;
   -webkit-column-width: 235px; 
   -moz-column-width: 235px; 
   column-width: 235px;
}
.rc-comment {
   float:left; 
   margin-left: 15px; 
   max-width:   250px;
   font-style:  italic;
}

.rc-matrix-data {
   margin-left:15px;
   width:180px;
   margin-bottom:15px;
   vertical-align:top;
}

ul.rc-option {
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin: 0;
}

li.rc-option {
    padding-left: 16px;
}

li.rc-standard:before {
    content: ☐; /* Insert content that looks like bullets */
    padding-right: 8px;
}

li.rc-standard {
   color:DimGray;
   font-style: italic;
}

li.rc-selected:before {
    content: ☑; /* Insert content that looks like bullets */
    padding-right: 8px;
}

li.rc-selected {
   font-weight: bold;
}

li.rc-spec:before {
    content: ☑; /* Insert content that looks like bullets */
    padding-right: 8px;
}

li.rc-spec {
   color:DarkBlue;
   font-weight: bold;
}