/***********************************************************************
** START_HERE.css works with steamport.css for the Steamport Skin for PMWiki
** == These are the image files you will want to customize for your site ==
** == Also you can add any custom CSS to this file to overide the 
**    steamport.css file even if it refers to the same element.
**
**  Copyright 2017 Kirk Siqveland (Kirk@theCogworks.org)
**
**  This file is one of several Skin files for PmWiki; you may redistribute it 
**  and/or modify it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
**
***********************************************************************/

/*  

    The Other big visual item variables are 
    from the /local/Config.php file:
    (see the README file, )
    
               WikiLogo  
    And The 	 $WikiTitle 
    and the    $WikiSearchTitle 


*/

/* This is just a demo of how to add a special font-face to your page 
    Just copy a file of the font into the media folder and add the something like this to this page: 
    I can't include it in the demo - it makes the file too large to include the font. */
  @font-face {
    font-family: drafthand;
    src: url("/agent/media/drafthand.ttf") ;
  }



body {
  /** Assuming you have added a /media directory to your pmwiki root directory (e.g. www.examplesite.com/pmwiki/media ) 
  /**   to be used for your default images.  
  /** For your <body> background you would use:
  /**    background-image: url("/pmwiki/media/background.png");      **/ 	
     background-color: #19397b;
     background-image: url("/agent/media/RainierBG.png") ;  
     background-size: 100%;
}

h1, h2, h3, h4, h5 {    color: #1e2a69;}

tr:nth-child(even) {
    background-color: #b3d4e6;
}

/**  Unless you have loaded a font called drafthand, browsers will look to the next font, "Georgia", or if not that, then
        "Times"... **/
#wikititlebar{
  font-family: drafthand, Georgia, Times, Palatino, serif;
  font-size: 18pt;
} 

#wikititlebar, #wikisearch, .lastmod, .wikicmds li a {
    color: #a8e6ff;
}

#wikisidebar, #wikirightgroup, #wikitext, #wikimoto {
  /** Assuming you have added a /media directory to your pmwiki root directory (e.g. www.examplesite.com/pmwiki/media ) 
  /**   to be used for your default images.  **/
  /** Also assuming this file sits in the {pmwiki root}/pub/skins/steamport directory...
  /** For your <body> background you would use:;
  /*   background-image: url("/agent/media/sidebarback.png"); */ 		
      /* background-image: url("/agent/media/steam.png") ;    */
      
      background: #d5dced;      
}

#wikirightgroup {
  /** Assuming you have added a /media directory to your pmwiki root directory (e.g. www.examplesite.com/pmwiki/media ) 
  /**   to be used for your default images.  **/
  /** Also assuming this file sits in the {pmwiki root}/pub/skins/steamport directory...
  /** For your <body> background you would use:;
  /*   background-image: url("/agent/media/rightgroupback.png"); */	
      /* background-image: url("/agent/media/steam.png") ;   */
  display: inherit;
}



/* Custom Theme Colors: Make Changes here to alter the default colors:  */
/* MAIN Highlight:        */
    #wikitop, #wikirule, #wikifoot  {          background:   #2742ce;  }
    #wikimoto, #wikitext            {          border-color: #1e2a69;  }


    /* Consider changing the Actions/Commands Hover-Over-a-Link color too:  */
    .wikicmds li a:hover            {           color:       #aa2d39;  }




