If you wish to contribute or participate in the discussions about articles you are invited to contact the Editor

MediaWiki:Common.css: Difference between revisions

From Navipedia
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 13: Line 13:
}
}


@media screen {
@media only screen {
.hidden {
.hide {
     display:none;
     display:none;
   }
   }
}
}

Revision as of 14:44, 14 March 2014

/* CSS placed here will be applied to all skins */

body.page-Main_Page h1.firstHeading { display:none; }

/* even and odd in tables*/
smwtable.row-even {background-color:#FFF;}
smwtable.row-odd {background-color:#CDE6EA;}

@media print {
.noprint {
    display:none;
  }
}

@media only screen {
.hide {
    display:none;
  }
}