1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 11:42:09 +02:00
Files
archived-web-php/styles/phpnet.css
Gabor Hojtsy 855139905a Use a list instead of styled div for the manual TOC layout, because
- this is semantically correct
 - this uses *much* less markup
 - looks better in downlevel browsers (eg. NN4)

Also make the TOC link list appear in the normal font size of the
sidebar (which is a bit bigger then what is currently used, and easier
to read). It is still reasonably small IMHO.
2003-09-13 12:26:46 +00:00

19 lines
665 B
CSS

/* TOC elements on manual pages ------------------------------------------- */
ul#manualtoc li {
background-image: url(http://static.php.net/www.php.net/images/box-0.gif);
}
ul#manualtoc li.up {
background-image: url(http://static.php.net/www.php.net/images/caret-u.gif);
}
ul#manualtoc li.home {
background-image: url(http://static.php.net/www.php.net/images/caret-t.gif);
}
ul#manualtoc li.active {
background-image: url(http://static.php.net/www.php.net/images/box-1.gif);
}
/* Left sidebar background ------------------------------------------------ */
#layout_2, #layout_3 {
background-image: url(http://static.php.net/www.php.net/images/leftbar.png);
}