Changeset 413 for trunk/ipdb.css


Ignore:
Timestamp:
05/13/10 16:38:43 (14 years ago)
Author:
Kris Deugau
Message:

/trunk

Migrate body colour and font base defs to CSS, make <head>
sections more consistent. See #3.

Look for local.css so admins can override the default
colours. local.css is ignored on the working root as it
should be entirely a local file. See #14.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      local.css
  • trunk/ipdb.css

    r397 r413  
    1 a:active {
    2   text-decoration: underline;
    3   color: #ff0000;
     1body {
     2  background-color: #ffffff;
     3  text-color: #000000;
     4  font-family: helvetica;
     5  margin: 0;
    46}
    57
    6 a:hover {
    7   text-decoration: underline;
    8   color: #0000ff;
    9 }
    10 
    11 a:link {
    12   text-decoration: underline;
    13   color: #000000;
    14 }
    15 
    16 a:visited {
    17   text-decoration: underline;
    18   color: #683080;
    19 }
     8a { text-decoration: underline; }
     9a:link          { color:#3333ff; }      /* unvisited link */
     10a:visited       { color:#663366; }      /* visited link */
     11a:hover         { color:#dd00dd; }      /* mouse over link */
     12a:active        { color:#cc0000; }      /* selected link */
    2013
    2114tr.color0 {
Note: See TracChangeset for help on using the changeset viewer.