/*
    Elaborate - A web collaboration engine written in PHP & MySQL
    Copyright (C) 2004-2020 Tim Booker
    https://github.com/hyperlinkage/elaborate

    Contributors:
        Tim Booker <timbooker@hyperlinkage.com>

    This program is free software; you can 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.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/

* {
    font-family: "Trebuchet MS", Verdana, sans-serif;
}

body {
    margin: 0;
    padding: 10px;
    font-size: 13px;
    line-height: 140%;
    text-align: center;
}

#container {
    width: 100%;
	max-width: 900px;
    margin: 0 auto 0 auto;
	padding: 0;
    text-align: left;
}

/* common site header */

#header {
    padding: 10px 10px 0 10px;
}

#header .logo {
    font-size: 18px;
	padding-bottom: 10px;
	float: left;
}

#header .logo a 
{
	text-decoration: none;
}

#header .nav
{
	float: right;
}

#header .nav a {
    text-decoration: none;
    font-size: 11px;
}


#header .search {
	display: block;
	clear: both;
    font-size: 11px;
	padding: 10px 0 10px 0;
	text-align: center;
}

#header .search input {
    border: 1px solid #999999;
}

#header .search input.text {
	width: 150px;
	margin-right: 2px;
}

#header form {
    display: inline;
}

#page form {
    display: block;
    margin: 0 0 12px 0;
}

#tabs {
    padding-right: 10px;
	float: right;
	clear: both;
}

#tabs ul {
    margin: 0;
    padding: 0;
    clear: both;
}

#tabs li {
    display: block;
    float: left;
    margin: 0 2px 0 0;
    padding: 0;
    font-size: 11px;
	border-radius: 5px 5px 0 0;
	border-bottom: none;  
}

#tabs a {
    display: block;
    padding: 4px 12px 2px 12px;
    text-decoration: none;
}

#page {
    padding: 5px 20px 18px 20px;
    margin: 0;
	border-radius: 5px;
	clear: both;
}

#footer {
    padding: 5px 20px 20px 20px;    
}

#footer p {
    text-align: right;
    font-size: 10px;   
}

img {
    border: none;   
}

h1 {
    font-size: 22px;
    font-weight: normal;
    margin: 8px 0 16px 0;
    line-height: 130%;
	border-bottom: 1px double #999999;
	padding-bottom: 4px;
}

h2 {
    font-size: 18px;
    font-weight: normal;
    margin: 16px 0 8px 0;
}

h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 16px 0 8px 0;
}

p, td, li, dt, dd {
    font: 16px/140% "Trebuchet MS", Verdana, sans-serif;
}

p {
    margin: 0 0 16px 0;
}

li {
	margin-bottom:8px;
}

p.date {
    margin: 10px 0 0 0;
    font-size: 10px;
    font-style: italic;    
	text-align: right;
}

dt {
    font-weight: bold;
    margin-left: 16px;
}

dd {
    margin-left: 32px;
    margin-bottom: 12px;
}

code, code *, pre, pre * {
    font: 12px "Lucida Console","Courier New",monospace;
}

pre
{
	/* https://stackoverflow.com/a/8306643/10046 */
	white-space: pre-wrap;
}

thead td, th {
    font-weight: bold;
    text-align: left;
}

/* forms and inputs */


input, textarea {
    
}

textarea {
    overflow: auto;   
}

input.smalltext, textarea.text {
    padding: 0 0 0 2px;
    font-size: 12px;    
    width: 250px;
    border: 1px solid #999999;
}

textarea.text {
    height: 60px;
}

textarea.html {
    padding: 0 0 0 2px;
    font:  12px "Lucida Console","Courier New",monospace;
    width: 100%;
    height: 300px;    
    border: 1px solid #999999;
}

input.button {
    background: #666666;
    color: #ffffff;
    border: 1px solid #999999;
	border-radius: 5px;
    margin-right: 2px;
    padding: 1px 4px 1px 4px;    
}

input.button:hover
{
	background: #999999;
    border-color: #cccccc;
}

div.field {
    margin-bottom: 8px;
}

div.label {
    font-size: 11px;   
}

.error {
    color: #ff0000;    
}


/* file comparisons */

table.diff {
    width: 100%;
}

table.diff td {
    width: 50%;
    vertical-align: top;
    padding: 2px 0 0 5px;
}

.unchanged, .changed, .inserted, .removed, .null {
    font: 12px "Lucida Console", "Courier New", monospace;
}
.unchanged {
    background-color: #dddddd;
}
.changed {
    background-color: #ffff99;
}
.inserted {
    background-color: #99ff99;
}
.removed {
    background-color: #ff9999;
}
.null {
    background-color: #cccccc;
}

table.data {
	width: 100%;
}

table.data td, 
table.data th {
	vertical-align: top;
	/*white-space: nowrap;*/
	font-size: 13px;
}

.incoming
{
	margin: 20px 0 0 0;
	padding: 10px;
	background: #222222;
	border: 1px solid #999999;
}

.incoming p
{
	font-size: 14px;
    margin: 0 0 0 0;
}


.incoming a
{
	white-space: nowrap;
}

.keyword 
{
	display: inline-block;
	padding: 0 2px 0 2px;
	color: black;
	background-color: #99ff99;
}
