source: branches/htmlform/ipdb.css@ 450

Last change on this file since 450 was 450, checked in by Kris Deugau, 14 years ago

/branches/htmlform

Added missing index and footer templates
Update default CSS with definitions for footer, alternate-row colours
Have main.cgi look for a template matching $webvar{action}
Convert main summary page content to template
See #3.

File size: 2.1 KB
Line 
1/* Specific divs */
2#adminlink {
3 position: absolute;
4 right: 10px;
5 bottom: 5px;
6}
7#footer {
8 border-top: thin solid #000000;
9}
10#contact {
11 font-size: 10px;
12 position: absolute;
13 right: 10px;
14 text-align: right;
15}
16
17body {
18 background-color: #ffffff;
19 text-color: #000000;
20 font-family: helvetica;
21 margin: 0;
22}
23
24a { text-decoration: underline; }
25a:link { color:#3333ff; } /* unvisited link */
26a:visited { color:#663366; } /* visited link */
27a:hover { color:#dd00dd; } /* mouse over link */
28a:active { color:#cc0000; } /* selected link */
29
30/* Defs for bulk-data rows */
31tr.header {
32 background-color: #CCCCCC;
33 font-family: Verdana, Arial, Helvetica, sans-serif;
34}
35tr.row0 {
36 background-color: #A8C4D0;
37 font-family: Verdana, Arial, Helvetica, sans-serif;
38 font-size: 90%;
39}
40tr.row1 {
41 background-color: #d0e0e0;
42 font-family: Verdana, Arial, Helvetica, sans-serif;
43 font-size: 90%;
44}
45
46/* legacy defs */
47tr.color0 {
48 background-color: #A8C4D0;
49 font-family: Verdana, Arial, Helvetica, sans-serif;
50 font-size: 90%;
51}
52
53tr.color1 {
54 background-color: #d0e0e0;
55 font-family: Verdana, Arial, Helvetica, sans-serif;
56 font-size: 90%;
57}
58
59tr.color2 {
60 background-color: #A8C4D0;
61 font-family: Verdana, Arial, Helvetica, sans-serif;
62 font-size: 90%;
63}
64
65tr.hack {
66 background-color: #E4EEE8;
67 font-family: Verdana, Arial, Helvetica, sans-serif;
68 font-size: 90%;
69}
70
71tr.warning {
72 background-color: #000000;
73 font-family: Verdana, Arial, Helvetica, sans-serif;
74 font-weight: bold;
75 color: red;
76}
77
78tr.header {
79 background-color: #CCCCCC;
80 font-family: Verdana, Arial, Helvetica, sans-serif;
81}
82
83.indent {
84 margin-left: 5%;
85 font-size: 90%;
86}
87
88.regular {
89 font-family: Verdana, Arial, Helvetica, sans-serif;
90 font-size: 100%;
91}
92
93.heading {
94 font-size: 110%;
95 font-weight: bold;
96 font-family: Verdana, Arial, Helvetica, sans-serif;
97}
98
99.small {
100 font-size: 60%;
101}
102
103.center {
104 text-align: center;
105 font-family: Verdana, Arial, Helvetica, sans-serif;
106 font-size: 100%;
107}
108
109.red {
110 font-weight: bold;
111 font-family: Verdana, Arial, Helvetica, sans-serif;
112 font-size:100%;
113 color: red;
114}
115
116.mask {
117 background: #00ff00;
118}
119
120.wildcard {
121 background: #ffff00;
122}
Note: See TracBrowser for help on using the repository browser.