/* Copyright (C) 2006, 2008, Karl O. Pinc
 *
 *    This file is part of Babase.
 *
 *    Babase 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 3 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 Babase.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Required style sheet for Babase programs.
 *
 * Karl O. Pinc <kop@meme.com>
 */


/* error and other status messages */
.error { color: red;
         background-color: inherit; }
.success { color: green;
           background-color: inherit;
           font-size: 200%; }
.filename { font-size: 150%;
            font-style: inherit; }
.remark { font-size: 25%;
          font-style: inherit;
          display: inline; }

.status { text-align: center; }

/* Alignment for data entry labels (mostly in tables). */
.label { text-align: right; }


/* The navbar */
.navbar { text-align: center; }

h1 { text-align: center; }


/*
 * The markup for diffs
 */

/* An overall container for the entire diff. */
.comparison { font-family: monospace;
              display: inline; }
TABLE.comparison { display: table;
                   empty-cells: show;
                   border-collapse: collapse;
                   border-style: solid;
                   table-layout: fixed; }
TD.comparison { display: table-cell;
                border-style: solid; }

/* markup of individual diff changes */
.deleted    { font-family: inherit;
              font-style: inherit;
              color: #ff9900;  /* orange */
              background-color: inherit;
              display: inline; }
.added      { font-family: inherit;
              font-style: inherit;
              color: blue;
              background-color: inherit;
              display: inline; }

