source: trunk/templates/dns.css@ 59

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

/trunk

Unkinked a few bugs in logging (creation and display)
Unkinked a few bugs in code that never got tested after it was modified

(add record) - need to test other bits

Fleshed out log display stub
Noted Net::DNS dep in INSTALL
Light display tweaks in log template, userlist template+CSS

File size: 3.4 KB
Line 
1#debug {
2 background-color: #990066;
3 padding: 2px;
4}
5
6/* General settings */
7body {
8 font-family: Verdana, Helvetica, sans-serif;
9 font-size: 12px;
10 margin-left: 0px;
11 margin-right: 0px;
12/* background-color: #deadDD;*/
13 background-color: #f8f8f8;
14}
15hr {
16 background-color: #666;
17 height: 1px;
18 border: 0;
19}
20img {
21 border: 0px;
22}
23fieldset {
24 border: none;
25 padding: 0px;
26 margin: 0px;
27}
28
29table.login {
30 text-align: center;
31 border: thin solid #000000;
32 background-color: #CCCCFF;
33}
34table.list {
35 background-color: #F0F0F0;
36}
37table.container {
38 background-color: #FFFFFF;
39 border: none;
40}
41table.wholepage {
42 width: 100%;
43}
44
45tr.row0 {
46 background-color: #FFFFFF;
47}
48tr.row1 {
49 background-color: #DDDDDD;
50}
51tr.tableheader {
52 background-color: #CCCCCC;
53 padding: 3px;
54 text-align: left;
55}
56tr.darkrowheader {
57 background-color: #CCCCCC;
58 padding: 3px;
59}
60tr.datalinelight {
61 background-color: #F0F0F0;
62 text-align: left;
63}
64
65td.tblsubmit {
66 background-color: #F0F0F0;
67 text-align: center;
68}
69td.inputlabel {
70 text-align: right;
71 padding: 3px;
72}
73td.datahead_l {
74 background-color: #F0F0F0;
75 border-bottom: 1px solid #666666;
76 text-align: left;
77}
78td.datahead_s {
79 background-color: #F0F0F0;
80 border-bottom: 1px solid #666666;
81 width: 1%;
82 white-space: nowrap;
83}
84td.data_nowrap {
85 white-space: nowrap;
86}
87td.data {
88 padding: 3px;
89}
90td.title {
91 text-align: center;
92}
93td.menu {
94 width: 200px;
95 white-space: nowrap;
96 border: thin solid #000000;
97 background-color: #ffccee;
98 vertical-align: top;
99}
100td.defaults {
101 background-color: #DDDDDD;
102}
103td.errhead {
104 font-weight: bold;
105 font-size: 110%;
106 color: red;
107 background-color: #404040;
108 text-align: center;
109 padding: 3px;
110 border: solid 2px #FF0000;
111}
112td.err {
113 border: solid 2px #FF0000;
114 color: red;
115 background-color: #e0e0e0;
116}
117td.warn {
118 border: solid 2px #FFFF00;
119 color: #333300;
120 background-color: #e0e0e0;
121}
122td.leftthird {
123 width: 36%;
124 text-align: left;
125}
126td.rightthird {
127 width: 36%;
128 text-align: right;
129}
130
131.meat {
132 align: center;
133 width: 100%;
134}
135input {
136 font-size: 10px;
137}
138ul {
139 margin-left: 10px;
140 padding: 0px;
141 list-style: none outside none;
142}
143/* F*** ME BUT THIS LOOKS LIKE CRAP! */
144/* Need to find a way to vertically centre the plus image on the text. >:( */
145/*li.hassub {
146 list-style: none outside url('../images/plus.gif');
147}
148li.leaf {
149 list-style: none outside none;
150} */
151
152#grptree {
153 //margin-left: 15px;
154}
155/* general classes */
156.errmsg {
157 font-weight: bold;
158 font-family: Verdana, Arial, Helvetica, sans-serif;
159 font-size:100%;
160 color: red;
161 background-color: #404040;
162 text-align: center;
163 border: thin solid #FFFFFF;
164 padding: 5px;
165 width: 70%;
166}
167.right {
168 right: 3px;
169}
170.center {
171 text-align: center;
172}
173
174#header {
175 border-bottom: thin solid #000000;
176 clear: both;
177 float: left;
178 width: 100%;
179}
180#footer {
181 border-top: thin solid #000000;
182 clear: both;
183}
184#contact {
185 font-size: 10px;
186 position: absolute;
187 right: 10px;
188 text-align: right;
189}
190
191#main {
192 position: relative;
193 float: right;
194 width: 100%;
195}
196#login {
197 margin-top: 50px;
198 margin-bottom: 50px;
199 padding: 3px;
200 border: thin solid #000000;
201}
202#tableholder {
203 padding: 2px;
204 background: #FFFFFF;
205 width: 70%;
206}
207#menu {
208 border-right: thin solid #000000;
209 margin-right: 5px;
210 padding: 3px;
211}
212#soadetail {
213 text-align: left;
214}
215/* somewhat generic/reusable */
216#datatablewrapper {
217 border: none;
218 width: 98%;
219 margin-left: 1%;
220 margin:right: 1%;
221}
Note: See TracBrowser for help on using the repository browser.