Header

From Gamedatawiki

(Difference between revisions)
m
m
 
(50 intermediate revisions not shown)
Line 1: Line 1:
-
<style type="text/css">
+
<style type="text/css">
   /*
   /*
       Notes:  
       Notes:  
Line 6: Line 6:
       -if you want your code to look nice on this page, put a space at the beginning of each line
       -if you want your code to look nice on this page, put a space at the beginning of each line
       -This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css  
       -This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css  
-
        
+
       - color chart at http://www.december.com/html/spec/colorcodes.html 
-
      For example uncomment this next section to turn all the text green:
+
   
-
  */
+
-
  /*
+
-
body {
+
-
    color: green;
+
-
}
+
-
  */
+
-
</style>
+
-
 
+
-
<script type="text/javascript">
+
-
  //$wgExtensionFunctions[] = "wfExtensionSpecialDeleteOldRevisions";
+
-
$wgExtensionCredits['specialpage'][] = array(
+
-
        'name' => 'Special:DeleteOldRevisions',
+
-
        'description' => 'adds a special page to delete all history from the wiki',
+
-
        'url' => 'http://meta.wikimedia.org/wiki/SpecialDeleteOldRevisions',
+
-
        'author' => 'Marc Noirot',
+
-
        'version' => '1.0'
+
-
);
+
-
 
+
-
require_once "$IP/includes/HTMLForm.php";
+
-
require_once "$IP/includes/SpecialPage.php";
+
-
 
+
-
/**
+
-
  * Support function for cleaning up redundant text records
+
  */
  */
-
function PurgeRedundantText( $delete = false ) {
+
/*black background */
-
     global $wgOut;
+
#content {
 +
margin: 2.2em 0 0 12.0em;
 +
padding: 0em 0.5em 0em 0.5em;
 +
background-color: transparent;
 +
border: 1px solid #aaaaaa;
 +
border-right: none;
 +
line-height: 1.5em;
 +
position: relative;
 +
z-index: 2;
 +
}
 +
/*banner on header */
 +
/*Black background with white text */
 +
body {
 +
    font: x-small sans-serif;
 +
    background: #000000 url("http://www.editthis.info/spira/images/spira/c/c2/SPIRAX1.jpg") 0.8em 0px no-repeat;
 +
    color: White;
 +
    margin: 0;
 +
    padding: 12em 0.2em;
 +
}
 +
.firstHeading { color: White; margin-bottom:0.1em; margin-top:0.1em; background: #000033; text-align:center;}
 +
h1, h2, h3, h4, h5, h6 {  color: White }
 +
table {
 +
     font-size: 100%;
 +
    background: black;
 +
}
 +
/* Non existent links - on page - not red anymore (too gaudy) */
-
    # Data should come off the master, wrapped in a transaction
+
a {
-
    $dbw =& wfGetDB( DB_MASTER );
+
     text-decoration: none;
-
    $dbw->begin();
+
     color: #B9D3EE;
-
 
+
     background: none;
-
    $tbl_arc = $dbw->tableName( 'archive' );
+
-
    $tbl_rev = $dbw->tableName( 'revision' );
+
-
    $tbl_txt = $dbw->tableName( 'text' );
+
-
 
+
-
    # Get "active" text records from the revisions table
+
-
    $wgOut->addHTML("Searching for active text records in revisions table... ");
+
-
    $res = $dbw->query( "SELECT DISTINCTROW rev_text_id FROM $tbl_rev" );
+
-
    while( $row = $dbw->fetchObject( $res ) ) {
+
-
        $cur[] = $row->rev_text_id;
+
-
     }
+
-
    $wgOut->addHTML( "done.\
+
-
" );
+
-
 
+
-
    # Get "active" text records from the archive table
+
-
    $wgOut->addHTML( "Searching for active text records in archive table... " );
+
-
     $res = $dbw->query( "SELECT DISTINCTROW ar_text_id FROM $tbl_arc" );
+
-
    while( $row = $dbw->fetchObject( $res ) ) {
+
-
        $cur[] = $row->ar_text_id;
+
-
    }
+
-
    $wgOut->addHTML( "done.\
+
-
" );
+
-
 
+
-
    # Get the IDs of all text records not in these sets
+
-
    $wgOut->addHTML( "Searching for inactive text records... " );
+
-
     $set = implode( ', ', $cur );
+
-
    $res = $dbw->query( "SELECT old_id FROM $tbl_txt WHERE old_id NOT IN ( $set )" );
+
-
    while( $row = $dbw->fetchObject( $res ) ) {
+
-
        $old[] = $row->old_id;
+
-
    }
+
-
    $wgOut->addHTML( "done.\
+
-
" );
+
-
 
+
-
    # Inform the user of what we're going to do
+
-
    $count = count( $old );
+
-
    $wgOut->addHTML( "$count inactive items found.\
+
-
" );
+
-
 
+
-
    # Delete as appropriate
+
-
    if( $delete && $count ) {
+
-
        $wgOut->addHTML( "Deleting... " );
+
-
        $set = implode( ', ', $old );
+
-
        $dbw->query( "DELETE FROM $tbl_txt WHERE old_id IN ( $set )" );
+
-
        $wgOut->addHTML( "done.\
+
-
" );
+
-
    }
+
-
 
+
-
    # Done
+
-
    $dbw->commit();
+
}
}
 +
a:visited { color:#B9D3EE; }
 +
a:active { color: #B9D333; }
 +
a:hover { text-decoration: underline; }
 +
a.stub { color: #7FFF00; }
 +
a.new,
 +
.special a.new { color:#7FFFB4; }
 +
#p-personal a.new { color: red; }
 +
#p-cactions .new a { color: red; }
 +
a.new:visited,
 +
.special a.new:visited,
 +
#p-personal a.new:visited { color:#B9D3EE; }
-
/**
+
#bodyContent a.external { color:#B9D3EE; }
-
* Support function for deleting old revisions
+
/* this can be used in the content area to switch off
-
*/
+
special external link styling */
-
function DeleteOldRevisions( $delete = false ) {
+
#bodyContent .plainlinks a {
-
    global $wgOut;
+
     background: none !important;
-
 
+
     padding: 0;
-
    # Data should come off the master, wrapped in a transaction
+
-
    $dbw =& wfGetDB( DB_MASTER );
+
-
    $dbw->begin();
+
-
 
+
-
    $tbl_pag = $dbw->tableName( 'page' );
+
-
    $tbl_rev = $dbw->tableName( 'revision' );
+
-
 
+
-
    # Get "active" revisions from the page table
+
-
    $wgOut->addHTML( "Searching for active revisions... " );
+
-
    $res = $dbw->query( "SELECT page_latest FROM $tbl_pag" );
+
-
    while( $row = $dbw->fetchObject( $res ) ) {
+
-
        $cur[] = $row->page_latest;
+
-
    }
+
-
    $wgOut->addHTML( "done.\
+
-
" );
+
-
 
+
-
    # Get all revisions that aren't in this set
+
-
    $wgOut->addHTML( "Searching for inactive revisions... " );
+
-
    $set = implode( ', ', $cur );
+
-
    $res = $dbw->query( "SELECT rev_id FROM $tbl_rev WHERE rev_id NOT IN ( $set )" );
+
-
    while( $row = $dbw->fetchObject( $res ) ) {
+
-
        $old[] = $row->rev_id;
+
-
    }
+
-
    $wgOut->addHTML( "done.\
+
-
" );
+
-
 
+
-
    # Inform the user of what we're going to do
+
-
    $count = count( $old );
+
-
    $wgOut->addHTML( "$count old revisions found.\
+
-
" );
+
-
 
+
-
    # Delete as appropriate
+
-
    if( $delete && $count ) {
+
-
        $wgOut->addHTML( "Deleting... " );
+
-
        $set = implode( ', ', $old );
+
-
        $dbw->query( "DELETE FROM $tbl_rev WHERE rev_id IN ( $set )" );
+
-
        $wgOut->addHTML( "done.\
+
-
" );
+
-
    }
+
-
 
+
-
    # This bit's done
+
-
    # Purge redundant text records
+
-
     $dbw->commit();
+
-
     PurgeRedundantText( $delete );
+
}
}
-
/**
+
/* gray boxes when displaying pages */
-
*  The simple form used to delete the revisions.
+
code { background-color: #0000aa; }
-
*/
+
pre {
-
class DeleteOldRevisionsForm extends HTMLForm {
+
     padding: 1em;
-
 
+
     border: 1px dashed #2f6fab;
-
     var $mPosted, $mRequest, $mSaveprefs, $action;
+
    color: White;
-
 
+
    background-color: #000033;
-
     function DeleteOldRevisionsForm($request) {
+
    line-height: 1.1em;
-
        $this->mPosted = $request->wasPosted();
+
}
-
        $this->mRequest =& $request;
+
/* More black when displaying text */
-
        $this->mName = 'deleteoldrevisions';
+
fieldset {
-
        $titleObj = Title::makeTitle( NS_SPECIAL, 'DeleteOldRevisions' );
+
    border: 1px solid #2f6fab;
-
        $this->action = $titleObj->escapeLocalURL();
+
    background-color: #000033;
-
    }
+
    margin: 1em 0em 1em 0em;
-
 
+
    padding: 0em 1em 1em 1em;
-
    function execute() {
+
    line-height: 1.5em;
-
        global $wgOut;
+
}
-
        $wgOut->addHTML("<form name=\\"uluser\\" action=\\"$this->action\\" method=\\"post\\" " .
+
legend {
-
                        "onsubmit=\\"return confirm('" . wfMsg('deleteoldrevisions-confirm') . "')\\">\
+
    background: Black;
-
");
+
    padding: 0.5em;
-
        $wgOut->addHTML('<p>' . wfMsg('deleteoldrevisions-label') . '</p>' );
+
    font-size: 95%;
-
        $wgOut->addHTML(wfElement( 'input', array(
+
}
-
                        'type'  => 'submit',
+
.pBody {
-
                        'name'  => 'delete',
+
font-size: 95%;
-
                        'value' => wfMsg('deleteoldrevisions-button'))));
+
background-color: #000033;
-
        $wgOut->addHTML("</form>");
+
color: black;
-
 
+
border-collapse: collapse;
-
        if( $this->mPosted ) {
+
border: 6px solid #B9D3EE;
-
            global $wgOut;
+
padding: 0 .8em .3em .5em;  
-
            $wgOut->addHTML('<pre>');
+
}
-
            DeleteOldRevisions(true);
+
.portlet li {
-
            $wgOut->addHTML('&lt;/pre>');
+
     padding: 0;
-
            $wgOut->addHTML('<p><strong>' . wfMsg('deleteoldrevisions-removalok') . '<strong></p>');
+
    margin: 0;
-
        }
+
    background: #000033;
-
     }
+
}
}
 +
.portlet a {color:#B9D3EE;}
-
/**
+
#p-search .pBody {
-
*  The special page itself.
+
     text-align: center;
-
*/
+
     background: #104E8B;
-
class DeleteOldRevisionsPage extends SpecialPage {
+
-
 
+
-
     function DeleteOldRevisionsPage() {
+
-
        SpecialPage::SpecialPage('DeleteOldRevisions', 'userrights');
+
-
     }
+
-
 
+
-
    function execute() {
+
-
        global $wgUser, $wgOut;
+
-
 
+
-
        if ( ! $wgUser->isSysop() ) {
+
-
            $wgOut->sysopRequired();
+
-
            return;
+
-
        }
+
-
 
+
-
        $this->setHeaders();
+
-
 
+
-
        global $wgRequest;
+
-
        $form = new DeleteOldRevisionsForm($wgRequest);
+
-
        $form->execute();
+
-
    }
+
}
}
-
/**
+
/* quickbar: article, edit, ... watch tags */
-
*  The extension entry-point.
+
#contentSub {    color: #000088}
-
*  Supported languages: french and english.
+
#catlinks {
-
*/
+
    border:1px solid #aaaaaa;
-
function wfExtensionSpecialDeleteOldRevisions() {
+
    background-color:#000033;
-
    global $wgMessageCache, $wgLanguageCode;
+
    padding:5px;
-
    if ($wgLanguageCode == 'fr') {
+
    margin-top: 1em;
-
        $wgMessageCache->addMessage('deleteoldrevisions', 'Suppression des anciennes revisions');
+
     clear: both;
-
        $wgMessageCache->addMessage('deleteoldrevisions-label', 'Cliquez sur \'Effacer\' pour effacer toutes les anciennes revisions du wiki.');
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-button', 'Effacer');
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-confirm', "Etes-vous s&ucirc;r de vouloir effacer toutes les anciennes r&eacute;visions ?\\\
+
-
Cette op&eacute;ration ne peut etre annul&eacute;e.");
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-removalok', "Les anciennes r&eacute;visions ont &eacute;t&eacute; effac&eacute;es avec succ&egrave;s.");
+
-
 
+
-
    }
+
-
    else {
+
-
        $wgMessageCache->addMessage('deleteoldrevisions', 'Delete old revisions');
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-label', 'Click on \'Delete\' to delete all the wiki\'s old revisions.');
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-button', 'Delete');
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-confirm', "Are you sure you want to delete all the old revisions ?\\\
+
-
This operation cannot be undone.");
+
-
        $wgMessageCache->addMessage('deleteoldrevisions-removalok', "The old revisions were successfully deleted.");
+
-
 
+
-
     }
+
-
    SpecialPage::addPage(new DeleteOldRevisionsPage());
+
}
}
-
 
+
#toc {
-
?></nowiki></pre>
+
    /*border:1px solid #2f6fab;*/
-
[[Category:MediaWiki extensions]]
+
    border:1px solid #aaaaaa;
-
[[Category:Extensions_by_Marc_Noirot]]
+
    background-color:#000033;
-
[[Category:Special page extensions]]
+
    padding:5px;
-
  </script>
+
    font-size: 95%;
 +
}
 +
#p-cactions {
 +
  PADDING-LEFT: 1em;
 +
FONT-SIZE: 95%;
 +
BACKGROUND: none transparent scroll repeat 0% 0%;
 +
LEFT: 140px;
 +
MARGIN: 0px;
 +
OVERFLOW: visible;
 +
WIDTH: 76%;
 +
LINE-HEIGHT: 1.1em;
 +
WHITE-SPACE: nowrap;
 +
LIST-STYLE-TYPE: none;
 +
POSITION: absolute;
 +
TOP: 130px;
 +
BORDER-COLLAPSE: collapse
 +
}
 +
#p-cactions li {
 +
    display: inline;
 +
    border: 3px solid #aaaaaa;
 +
    border-bottom: none;
 +
    padding: 0 0 0.1em 0;
 +
    margin: 0 0.3em 0 0;
 +
    overflow: visible;
 +
    background: #B9D3EE;
 +
}
 +
#p-cactions li.selected {
 +
    border-color: #C6E2FF;
 +
    padding: 0 0 0.2em 0;
 +
}
 +
#p-cactions li a {
 +
    background-color: #c2c2c2;
 +
    color: #002bb8;
 +
    border: none;
 +
    padding: 0 0.8em 0.3em 0.8em;
 +
    text-decoration: none;
 +
    text-transform: lowercase;
 +
    position: relative;
 +
    z-index: 0;
 +
    margin: 0;
 +
}
 +
/*user bar */
 +
#p-personal {
 +
    width:100%;
 +
    white-space:nowrap;
 +
    padding: 0;
 +
    margin: 0;
 +
    position:absolute;
 +
    left: 40 px;
 +
    top:2em;
 +
    z-index: 0;
 +
    border: none;
 +
    background: none;
 +
    overflow: visible;
 +
    line-height: 1.2em;
 +
}
 +
#p-personal li {
 +
    z-index:0;
 +
    border:none;
 +
    padding:0;
 +
    display: inline;
 +
    color: #2f6fab;
 +
    margin-left: 1em;
 +
    line-height: 1.2em;
 +
    background: #c2c2c2;
 +
}
 +
/* footer needs to be black too */
 +
#footer {
 +
    background-color: black;
 +
    border-top: 1px solid #fabd23;
 +
    border-bottom: 1px solid #fabd23;
 +
    margin: 0.6em 0em 1em 0em;
 +
    padding: 0.4em 0em 1.2em 0em;
 +
    text-align: center;
 +
    font-size: 90%;
 +
}
 +
/* images */
 +
div.floatright, table.floatright {
 +
    clear: right;
 +
    float: right;
 +
    position: relative;
 +
    margin: 0 0 0.5em 0.5em;
 +
    border: 0
 +
    background: black;
 +
/*
 +
    border: 0.5em solid Black;
 +
    border-width: 0.5em 0 0.8em 1.4em;
 +
*/
 +
}
 +
div.floatright p { font-style: italic; }
 +
div.floatleft, table.floatleft {
 +
    float: left;
 +
    position: relative;
 +
    margin: 0 0.5em 0.5em 0;
 +
    border: 0
 +
    background: black;
 +
/*
 +
    margin: 0.3em 0.5em 0.5em 0;
 +
    border: 0.5em solid Black;
 +
    border-width: 0.5em 1.4em 0.8em 0;
 +
*/
 +
}
 +
div.floatleft p { font-style: italic; }
 +
/* thumbnails */
 +
div.thumb {
 +
    margin-bottom: 0.5em;
 +
    border-style: solid; border-color: black;
 +
    background-color: 000033;
 +
   
 +
    width: auto;
 +
}
 +
/* Page history styling */
 +
/* the auto-generated edit comments */
 +
.autocomment { color: gray; }
 +
#pagehistory span.user {
 +
    margin-left: 1.4em;
 +
    margin-right: 0.4em;
 +
}
 +
#pagehistory span.minor { font-weight: bold; }
 +
#pagehistory li { border: 1px solid White; }
 +
#pagehistory li.selected {
 +
    background-color:#000088;
 +
    border:1px dashed #aaaaaa;
 +
}
 +
form {
 +
    background: Black;
 +
    border: none;
 +
    margin: 0;
 +
}
 +
table.gallery {
 +
border:  3px solid #c2c2c2;
 +
margin:  2px;
 +
padding: 2px;
 +
background-color:#000000;
 +
}
 +
table.gallery td {
 +
vertical-align:top;
 +
background-color:#191970;
 +
border: solid 2px #c2c2c2;
 +
}
 +
/*user bar */
 +
#p-personal {
 +
    width:100%;
 +
    white-space:nowrap;
 +
    padding: 0;
 +
    margin: 0;
 +
    position:absolute;
 +
    left: 40 px;
 +
    top:2em;
 +
    z-index: 0;
 +
    border: none;
 +
    background: none;
 +
    overflow: visible;
 +
    line-height: 1.2em;
 +
}
 +
#p-personal li {
 +
    z-index:0;
 +
    border:none;
 +
    padding:0;
 +
    display: inline;
 +
    color: #2f6fab;
 +
    margin-left: 1em;
 +
    line-height: 1.2em;
 +
    background: #c2c2c2;
 +
}
 +
</style>

Current revision as of 09:51, 2 December 2006

<style type="text/css">

  /*
     Notes: 
      -You must log as admin to edit this page
      -Whatever you enter in this page will be added to the html in the header after the standard style sheet, so you can override styles. 
      -if you want your code to look nice on this page, put a space at the beginning of each line
      -This is the default style sheet that you can override : http://editthis.info/wiki/skins/monobook/main.css 
      - color chart at http://www.december.com/html/spec/colorcodes.html   

*/
/*black background */
#content {
margin: 2.2em 0 0 12.0em;
padding: 0em 0.5em 0em 0.5em;
background-color: transparent;
border: 1px solid #aaaaaa;
border-right: none;
line-height: 1.5em;
position: relative;
z-index: 2;

} /*banner on header */ /*Black background with white text */ body {

   font: x-small sans-serif;
   background: #000000	 url("SPIRAX1.jpg") 0.8em 0px no-repeat;
   color: White;
   margin: 0;
   padding: 12em 0.2em;

} .firstHeading { color: White; margin-bottom:0.1em; margin-top:0.1em; background: #000033; text-align:center;} h1, h2, h3, h4, h5, h6 { color: White } table {

   font-size: 100%;
   background: black;

} /* Non existent links - on page - not red anymore (too gaudy) */

a {

   text-decoration: none;
   color: #B9D3EE;
   background: none;

} a:visited { color:#B9D3EE; } a:active { color: #B9D333; } a:hover { text-decoration: underline; } a.stub { color: #7FFF00; } a.new, .special a.new { color:#7FFFB4; }

  1. p-personal a.new { color: red; }
  2. p-cactions .new a { color: red; }

a.new:visited, .special a.new:visited,

  1. p-personal a.new:visited { color:#B9D3EE; }
  1. bodyContent a.external { color:#B9D3EE; }

/* this can be used in the content area to switch off special external link styling */

  1. bodyContent .plainlinks a {
   background: none !important;
   padding: 0;

}

/* gray boxes when displaying pages */ code { background-color: #0000aa; } pre {

   padding: 1em;
   border: 1px dashed #2f6fab;
   color: White;
   background-color: #000033;
   line-height: 1.1em;

} /* More black when displaying text */ fieldset {

   border: 1px solid #2f6fab;
   background-color: #000033;
   margin: 1em 0em 1em 0em;
   padding: 0em 1em 1em 1em;
   line-height: 1.5em;

} legend {

   background: Black;
   padding: 0.5em;
   font-size: 95%;

} .pBody { font-size: 95%; background-color: #000033; color: black; border-collapse: collapse; border: 6px solid #B9D3EE; padding: 0 .8em .3em .5em; } .portlet li {

   padding: 0;
   margin: 0;
   background: #000033;

} .portlet a {color:#B9D3EE;}

  1. p-search .pBody {
   text-align: center;
   background: #104E8B;

}

/* quickbar: article, edit, ... watch tags */

  1. contentSub { color: #000088}
  2. catlinks {
   border:1px solid #aaaaaa;
   background-color:#000033;
   padding:5px;
   margin-top: 1em;
   clear: both;

}

  1. toc {
   /*border:1px solid #2f6fab;*/
   border:1px solid #aaaaaa;
   background-color:#000033;
   padding:5px;
   font-size: 95%;

}

  1. p-cactions {
PADDING-LEFT: 1em;
FONT-SIZE: 95%;
BACKGROUND: none transparent scroll repeat 0% 0%;
LEFT: 140px;
MARGIN: 0px;
OVERFLOW: visible;
WIDTH: 76%;
LINE-HEIGHT: 1.1em;
WHITE-SPACE: nowrap;
LIST-STYLE-TYPE: none;
POSITION: absolute;
TOP: 130px;
BORDER-COLLAPSE: collapse

}

  1. p-cactions li {
   display: inline;
   border: 3px solid #aaaaaa;
   border-bottom: none;
   padding: 0 0 0.1em 0;
   margin: 0 0.3em 0 0;
   overflow: visible;
   background: #B9D3EE;

}

  1. p-cactions li.selected {
   border-color: #C6E2FF;
   padding: 0 0 0.2em 0;

}

  1. p-cactions li a {
   background-color: #c2c2c2;
   color: #002bb8;
   border: none;
   padding: 0 0.8em 0.3em 0.8em;
   text-decoration: none;
   text-transform: lowercase;
   position: relative;
   z-index: 0;
   margin: 0;

} /*user bar */

  1. p-personal {
   width:100%;
   white-space:nowrap;
   padding: 0;
   margin: 0;
   position:absolute;
   left: 40 px;
   top:2em;
   z-index: 0;
   border: none;
   background: none;
   overflow: visible;
   line-height: 1.2em;

}

  1. p-personal li {
   z-index:0;
   border:none;
   padding:0;
   display: inline;
   color: #2f6fab;
   margin-left: 1em;
   line-height: 1.2em;
   background: #c2c2c2;

} /* footer needs to be black too */

  1. footer {
   background-color: black;
   border-top: 1px solid #fabd23;
   border-bottom: 1px solid #fabd23;
   margin: 0.6em 0em 1em 0em;
   padding: 0.4em 0em 1.2em 0em;
   text-align: center;
   font-size: 90%;

} /* images */ div.floatright, table.floatright {

   clear: right;
   float: right;
   position: relative;
   margin: 0 0 0.5em 0.5em;
   border: 0
   background: black;

/*

   border: 0.5em solid Black;
   border-width: 0.5em 0 0.8em 1.4em;
  • /

} div.floatright p { font-style: italic; } div.floatleft, table.floatleft {

   float: left;
   position: relative;
   margin: 0 0.5em 0.5em 0;
   border: 0
   background: black;

/*

   margin: 0.3em 0.5em 0.5em 0;
   border: 0.5em solid Black;
   border-width: 0.5em 1.4em 0.8em 0;
  • /

} div.floatleft p { font-style: italic; } /* thumbnails */ div.thumb {

   margin-bottom: 0.5em;
   border-style: solid; border-color: black;
   background-color: 000033;
   
   width: auto;

} /* Page history styling */ /* the auto-generated edit comments */ .autocomment { color: gray; }

  1. pagehistory span.user {
   margin-left: 1.4em;
   margin-right: 0.4em;

}

  1. pagehistory span.minor { font-weight: bold; }
  2. pagehistory li { border: 1px solid White; }
  3. pagehistory li.selected {
   background-color:#000088;
   border:1px dashed #aaaaaa;

} form {

   background: Black;
   border: none;
   margin: 0;

} table.gallery { border: 3px solid #c2c2c2; margin: 2px; padding: 2px; background-color:#000000; } table.gallery td { vertical-align:top; background-color:#191970; border: solid 2px #c2c2c2; } /*user bar */

  1. p-personal {
   width:100%;
   white-space:nowrap;
   padding: 0;
   margin: 0;
   position:absolute;
   left: 40 px;
   top:2em;
   z-index: 0;
   border: none;
   background: none;
   overflow: visible;
   line-height: 1.2em;

}

  1. p-personal li {
   z-index:0;
   border:none;
   padding:0;
   display: inline;
   color: #2f6fab;
   margin-left: 1em;
   line-height: 1.2em;
   background: #c2c2c2;

} </style>

Personal tools