|
From: Andrew <men...@us...> - 2006-01-15 01:51:00
|
Update of /cvsroot/mxbb/core/docs/css In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26718/docs/css Modified Files: subSilver.css Log Message: Ta-da! First "version" of the frames layout for the docs. Index: subSilver.css =================================================================== RCS file: /cvsroot/mxbb/core/docs/css/subSilver.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** subSilver.css 14 Jan 2006 22:46:45 -0000 1.2 --- subSilver.css 15 Jan 2006 01:50:51 -0000 1.3 *************** *** 1,3 **** ! <?php /** * --- 1,3 ---- ! <? /** * *************** *** 18,22 **** /** * Note that this is the original subSilver style, with a few minor changes ! * done to suit our needs. All copyrights and essential credits are * of course listed below. * --- 18,22 ---- /** * Note that this is the original subSilver style, with a few minor changes ! * and additions done to suit our needs. All copyrights and essential credits are * of course listed below. * *************** *** 236,237 **** --- 236,291 ---- /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ @import url("formIE.css"); + + /* Special mxBB-specific stuff */ + + p,ul,td {font-size:10pt;} + .h2 { + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12pt; + font-weight: bold; + } + .h3 { + color: blue; + font-family: Verdana, Arial, Helvetica, sans-serif; + font-size: 12pt; + } + + ul.navlist { + margin: 0; + padding: 0; + list-style: none; + } + ul.navlist ul { + padding: 0; + padding-left: 16px; + margin: 0; + list-style: none; + } + ul.navlist ul ul { + margin: 0; + } + ul.navlist a { + padding-left: 16px; + color: #000000; + } + li.navcat a { + background: url(../images/li_bullet_blue.gif) no-repeat; + font-weight: bold; + } + li.navcat a.minus { + background: url(../images/icon_sign_minus.gif) no-repeat; + font-weight: bold; + } + li.navcat a.plus { + background: url(../images/icon_sign_plus.gif) no-repeat; + font-weight: bold; + } + li.navitem a { + color: #006699; + background: url(../images/li_small_arrow_right_black.gif) no-repeat; + font-weight: normal; + } + li.folder a { + background: url(../images/li_folders.gif) no-repeat; + font-weight: normal; + } |