Site /
LocalCSS
Apply CSS to pages or groups of pages in the wiki by adding CSS code below. See Cookbook:LocalCSS.
PmWiki.ListStyles-Talk ol.myoutline { list-style-type: upper-roman; } ol.myoutline ol { list-style-type: upper-alpha; } ol.myoutline ol ol { list-style-type: decimal; } ol.myoutline ol ol ol { list-style-type: lower-alpha; } ol.myoutline ol ol ol ol { list-style-type: lower-roman; }
Cookbook.DeactivateParagraphTag td.markup2 p {border: 2px dotted red; padding: 2px; background-color: white;} td.markup2 {background-color: #ddd; padding: 8px;}
Cookbook.WikiStylesPlus-Talk ul.myoutline { color: green; } ul.myoutline ul ul { list-style-type:none; }
PmWiki.Tables-Talk /* thick border around Everest (3rd row, 3rd column) */ table.mytable tr:nth-child(3) td:nth-child(3) { border: 3px solid green; background-color: yellow; } /* thin dashed border around Argentina (6th row, 4th column) */ table.mytable tr:nth-child(6) td:nth-child(4) { border: 2px dashed red; } table.myothertable { border-collapse: collapse; } table.myothertable th { border: 4px solid blue; } table.myadvancedtable { border-collapse: collapse; width: 100%; } table.myadvancedtable td.thickborder { border: 4px solid black; background-color: #00b0f0; } table.myadvancedtable td.thinborder { border: 1px solid red; }