[BACK]Return to cvsweb.css CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb / css

File: [cvsweb.bsd.lv] / cvsweb / css / cvsweb.css (download)

Revision 3.9, Sun Sep 7 18:22:09 2003 UTC (20 years, 7 months ago) by scop
Changes since 3.8: +6 -1 lines

- Add style for fieldset elements.
- Tweak diff-selected style.

/* CSS for FreeBSD-CVSweb */
/* $FreeBSD$ */

body {
  color: #000;
  background-color: #fff;
}
th {
  text-align: left;
}
hr {
  height: 1px;
  border: none;
  background-color: #000;
}
h1 {
  text-align: center;
}
fieldset {
  background-color: #eee;
  padding: 0.8em;
}
/* Source, diff and annotate views */
.src {
  color: #000;
  background-color: #eee;
  font-style: normal;
  font-weight: normal;
}
/* Navigation header for source views, diffs and annotations */
.navigate-header {
  background-color: #99e;
  padding: 2px;
  border: 2px outset;
}
/* Directory table */
table.dir {
  border-right: 1px solid #ccc;
}
table.dir * td {
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
/* Directory column header */
.dir-header {
  background-color: #ffc;
  border: thin outset;
}
/* Sorted directory column header */
.dir-header-sorted {
  background-color: #fc6;
  border: thin inset;
}
/* Odd rows in directory table */
.dir-row-odd {
  background-color: #fff;
}
/* Even rows in directory table */
.dir-row-even {
  background-color: #fff;
}
/* Log entry in markup */
.log-markup {
  background-color: #fff;
  width: 100%;
}
/* Diff-selected revision in log */
.diff-selected {
  padding-right: 0.5em;
  border-right: 10px solid #fc6;
}
/* 'Line'-header of each diffed file */
.diff-heading {
  background-color: #9cc;
  border: 2px outset;
  padding: 5px;
}
/* Lines that are the same */
.diff-same {
  font-family: Helvetica, Arial, sans-serif;
  font-size: smaller;
}
/* Empty lines */
.diff-empty {
  background-color: #ccc;
  font-size: smaller;
}
/* Added lines */
.diff-added {
  background-color: #ccf;
  font-family: Helvetica, Arial, sans-serif;
  font-size: smaller;
}
/* Removed lines */
.diff-removed {
  background-color: #f99;
  font-family: Helvetica, Arial, sans-serif;
  font-size: smaller;
}
/* Changed lines */
.diff-changed {
  background-color: #9f9;
  font-family: Helvetica, Arial, sans-serif;
  font-size: smaller;
}
/* Empty changed lines */
.diff-changed-missing {
  background-color: #9c9;
  font-size: smaller;
}
/* Unchanged text in ediffs */
.diff-unchanged {
  background-color: #ccc;
  font-family: Helvetica, Arial, sans-serif;
  font-size: smaller;
}
/* Download links */
.download-link { 
  font-weight: bold;
}