/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4; */

/**
 * CSS for the non-Neatline-native parts of the fullscreen view (top bar, etc.).
 *
 * PHP version 5
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
 * applicable law or agreed to in writing, software distributed under the
 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
 * OF ANY KIND, either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * @package     omeka
 * @subpackage  neatline
 * @author      Scholars' Lab
 * @author      Bethany Nowviskie <bethany@virginia.edu>
 * @author      Adam Soroka <ajs6f@virginia.edu>
 * @author      David McClure <david.mcclure@virginia.edu>
 * @copyright   2011 Rector and Board of Visitors, University of Virginia
 * @license     http://www.apache.org/licenses/LICENSE-2.0.html Apache 2 License
 */

/* Window. */

html {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
}

/* Neatline container. */

#neatline {
    display: block;
    position: relative;
    background: #f1f1f1;
}


/* Top bar */

#topbar {
    position: fixed;
    height: 34px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    overflow: visible;
    line-height: 18px;
    font-family: 'Crimson Text', Georgia, serif;
}

#ie9 #topbar {
    position: absolute;
}

#neatline-logo {
    float: left;
    margin: 4px 30px 0 20px;
}

a.omeka-logo {
    font-size: 19px;
    float: right;
    margin: 6px 20px 0 0;
    color: #e7e7e7;
    text-decoration: none;
}

a.omeka-logo:hover {
    text-decoration: underline;
}

span.top-bar-title {
    color: #fff;
    font-size: 22px;
    top: 7px;
    position: relative;
}


