/*
Theme Name: monolit
Theme URI: http://blog.jasen.dk/monolit
Description: <p>A photoblog theme based on <a href="http://www.wordpress.org/">Wordpress</a> and <a href="http://johannes.jarolim.com/yapb/">YAPB</a></p><p>This theme depends on the <a href="http://johannes.jarolim.com/yapb/">Yet Another Photoblog</a> plugin.</p><p>It is based on the default wordpress theme but has also borrowed stuff from the <a href="http://mac.defx.de/grain-theme">grain</a> theme, and the <a href="http://www.226-design.com/monochrome/">monochrome</a> blog with permission from the authors.</p><p><b>DON'T ENABLE EXIF IN THIS VERSION</b></p>
Version: 0.7
Author: Kim N&oslash;rgaard
Author URI: http://www.jasen.dk/
.
**IMPORTANT**
Configuring the theme:

If you wan to enable archives:
  - Create an 'archives' page through Manage/Pages. Remember the title and be
    sure to select the 'Arcives' template under "Page Template".
  - in the config/config.php file
    => change the value of MONOLIT_SET_ARCHIVE_WP_TITLE to the title of the page
       you just created
    => change the value of MONOLIT_SET_SHOW_ABOUT to 1

If you want to enable an about page:
  - Create an 'about' page through Manage/Pages. Remember the title.
  - in the config/config.php file:
    => change the value of MONOLIT_SET_ABOUT_WP_TITLE to the title of the page
       you just created
    => change the value of MONOLIT_SET_SHOW_ARCHIVES to 1

Changing the copyright notice and other settings
  - Copyright: Change the MONOLIT_SET_COPYRIGHT to whatever you want the
    copyright notice to say.
  - Change other configuration values in the file if needed. They are pretty
    much self-explanatory.

About sizes:
  The theme automatically resizes images to a max width of 900 pixels and a
  max height that is customizable through the MONOLIT_SET_MAX_HEIGHT value
  (default is 600 pixels). If you want wider images the layout will break 
  unless you change the stylesheet (look for the 'inside' class).

About language and messages:
  Language and messages can be configured through the lang/lang.php file. It
  might take some skill to figure out which message goes where :-)

Todo:
  - a smarter way to control the configuration, ie. via admin page
.
*/

body {
  margin: 0px; 
  font-family: Arial, sans;
  font-size: 12px;
  line-height:16px;
  color: #777;
  background-color: #000;
  }

/* CONTAINERS */
.inside {
  margin:0px auto 0px auto;
  }

.blackbg { background-color: #000; }

/* LINKS */
a {
  color: #777;
  text-decoration: none;
  border-bottom: 1px dashed #777;
  }

a img { border: 0; }

a:hover {
  color:#aaa;
  text-decoration:none;
  }

a.clean {
  border:none;
}

/* BASIC ELEMENTS */
p {
  color: #555;
  margin: 2px 0 10px 2em;
  }

h2 {
  font-size: 1.5em;
  font-weight: normal;
  }

h3 {
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 0.5em;
  }

/* ARCHIVES */
.archive-thumbnails-container {
  text-align:center;
}

.archives {
  width:600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.archive-thumbnails {
  float:left;
  margin:10px;
  width:170px;
}

.archive-thumbnails img
{
  border:solid white 1px;
}

/* HEADER AND NAVIGATION */
/*
#header {
  position:relative;
  top: 5px;
  right: 5px;
  width: 100%;
  text-align: right;
  font-family: Trebuchet MS, Arial, Verdana, sans-serif;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:1px;
  margin-bottom:70px;
}
*/
#header {
  position:fixed;
  top: 5px;
  right: 5px;
  width: 100%;
  text-align: right;
  font-family: Trebuchet MS, Arial, Verdana, sans-serif;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:1px;
  margin-bottom:70px;
}

#header a {
  border-bottom: none;
}

/* FOOTER */
#footer {
  width:100%;
  border-top: 1px dashed #444;
  color: #555;
  background-color: #222;
  text-align: center;
  padding-top: .5em;
  padding-bottom: .5em;
  position:fixed;
  bottom:0px;
}


/* IMAGE NAVIGATION */
#image-navigate-container {
  position: relative;
  width:250px;
  height: 100px;
  font-family: Trebuchet MS, Arial, Verdana, sans-serif;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:2px;
  margin-top: 12px;
}

#image-navigate-container a {
  border-bottom: none;
}

.image-navigate-left {
  position: absolute;
  left: 0;
  width: 33%;
  z-index: 2;
}

.image-navigate-center {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  z-index: 1;
}

.image-navigate-right {
  position: absolute;
  right: 0;
  width: 33%;
  text-align: right;
  z-index: 2;
}

/* IMAGES */
#image {
  padding-top:50px;
  text-align: center;
}

/** 
 * While we're having the loading class set.
 * Removig it, will remove the loading message
 */
#loader {
  display:inline-block;
  width:100%;
  height:500px;
}

img.loadimg {
  margin-top:100px;
}

img.photo {
}

.whiteborder {
  border: solid white 1px;
}

.blackborder {
  border: solid black 1px;
}

.darkgreyborder {
  border: solid #111 20px;
}

/* BULLETS */
.bullet ul {
  margin-top: 0;
}
.bullet li {
  list-style-type: square;  
} 

/* --- Float Hack --- */
.cf:after { content: "."; display: block;   height: 0;  clear: both; visibility: hidden; }
/* Hides from IE-mac \*/
html .cf {height: 1%;}
/* End hide from IE-mac */

.clear
{
  clear:both;
  line-height:0px;
  height:0;
  font-size:1px;
}

.clear:after
{
  content: " ";
}

.box
{
  margin-left:auto; 
  margin-right:auto; 
  width:400px; 
  background-color:#eee; 
  padding:20px; 
  padding-left:40px; 
  padding-bottom:30px; 
  border:solid #222 10px;
  margin-top:50px;
}
