Ignore:
Timestamp:
07/28/10 16:46:21 (14 years ago)
Author:
Kris Deugau
Message:

/branches/htmlform

Move Javascript from the header into its own file
Convert index page (master block summary) to template
Convert header to template, use template header in main.cgi
and search.cgi - going to leave admin.cgi out for now
Update HTML in header, index, footer to HTML 4.01 strict
See #3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/htmlform/ipdb.css

    r450 r451  
     1/* Default/global defs for specific tags */
     2fieldset {
     3        border: none;
     4        padding: 0px;
     5        margin: 0px;
     6}
     7
    18/* Specific divs */
     9#bodyheader {
     10        margin-left: 4px;
     11        position: relative;
     12}
     13#homelink {
     14        font-size: 13px;
     15        font-weight: bold;
     16        position: absolute;
     17        right: 10px;
     18        bottom: 2px;
     19        text-align: right;
     20}
     21#subheader {
     22        background-color: #D0E0E0;
     23        font-size: 90%;
     24        padding: 3px;
     25        border-top: thin solid #000000;
     26        /* apparently this is required to keep "contained" position: absolute divs from escaping.  O_o */
     27        position: relative;
     28}
     29#csearch {
     30        float: right;
     31        padding: 3px;
     32}
     33#newlink {
     34        position: absolute;
     35        right: 10px;
     36        top: 6px;
     37        text-align: right;
     38}
     39#main {
     40        padding: 10px;
     41        border-top: thin solid #000000;
     42/*        text-align: center;*/
     43        padding-top: 20px;
     44        position: relative;
     45}
     46#utils {
     47        font-size: 13px;
     48        font-weight: bold;
     49        position: absolute;
     50        right: 10px;
     51        top: 2px;
     52        text-align: right;
     53}
    254#adminlink {
    355        position: absolute;
     
    2779a:hover         { color:#dd00dd; }      /* mouse over link */
    2880a:active        { color:#cc0000; }      /* selected link */
     81
     82table.centre {
     83        margin-left: auto;
     84        margin-right: auto;
     85}
    2986
    3087/* Defs for bulk-data rows */
     
    81138}
    82139
     140/* Generic classes */
    83141.indent {
    84142        margin-left: 5%;
Note: See TracChangeset for help on using the changeset viewer.