source: trunk/dnsbl/templates/dnsbl.css@ 66

Last change on this file since 66 was 66, checked in by Kris Deugau, 6 years ago

/trunk/dnsbl

Add exclusion flagging and block-comment handling to IP list tools. Exclusion
flags can be set or unset on each submit; netblock comments can be added,
updated, or removed (or at least "set empty") on each submit.

Note this is focused on the CIDR (rbldnsd) export format, and may produce
excitingly weird results with the default "classful"/tinydns mode.

File size: 3.0 KB
Line 
1/* CSS for browse view of DNSBL data */
2body {
3 font-family: "Times New Roman",Times,serif;
4 background: #cccccc;
5}
6input {
7 font-family: Helvetica,"Arial Narrow",sans-serif;
8}
9
10.lvl0 {
11 background: #ccffcc;
12 border: 1px solid #000000;
13 margin: 2px;
14 padding: 2px;
15 width: 750px;
16}
17.lvl1 {
18 background: #99ff99;
19 border: 1px solid #000000;
20 margin: 2px;
21 padding: 2px;
22 position: relative;
23 left: 75px;
24 top: 0px;
25 width: 675px;
26}
27.lvl2 {
28 background: #66dd66;
29 border: 1px solid #000000;
30 margin: 2px;
31 padding: 2px;
32 position: relative;
33 left: 75px;
34 top: 0px;
35 width: 600px;
36}
37.lvl3 {
38 background: #33aa33;
39 border: 1px solid #000000;
40 margin: 2px;
41 padding: 2px;
42 position: relative;
43 left: 75px;
44 top: 0px;
45 width: 525px;
46}
47.lvl4 {
48 background: #009900;
49 border: 1px solid #000000;
50 margin: 2px;
51 padding: 2px;
52 position: relative;
53 left: 75px;
54 top: 0px;
55 width: 450px;
56}
57.lvl5 {
58 background: #009900;
59 border: 2px solid #000000;
60 margin: 2px;
61 padding: 2px;
62 position: relative;
63 left: 75px;
64 top: 0px;
65 width: 375px;
66}
67.lvl6 {
68 background: #009900;
69 border: 2px solid #000000;
70 margin: 2px;
71 padding: 2px;
72 position: relative;
73 left: 75px;
74 top: 0px;
75 width: 300px;
76}
77
78.auto0 {
79 background: #ffffcc;
80}
81.auto1 {
82 background: #ffff99;
83}
84.auto2 {
85 background: #dddd66;
86}
87.auto3 {
88 background: #aaaa33;
89}
90.auto4 {
91 background: #999900;
92}
93.auto5 {
94 background: #999900;
95}
96.auto6 {
97 background: #999900;
98}
99
100.b0list {
101 background: #ffcc99;
102 border: 1px solid #000000;
103 margin: 1px;
104}
105.b1list {
106 background: #ff9900;
107 border: 1px solid #000000;
108 margin: 1px;
109}
110.b2list {
111 background: #cc6600;
112 border: 1px solid #000000;
113 margin: 1px;
114}
115.b3list {
116 background: #cc6600;
117 border: 2px solid #000000;
118 margin: 1px;
119}
120.b4list {
121 background: #cc6600;
122 border: 2px solid #000000;
123 margin: 1px;
124}
125.b5list {
126 background: #cc6600;
127 border: 2px solid #000000;
128 margin: 1px;
129}
130.b6list {
131 background: #cc6600;
132 border: 2px solid #000000;
133 margin: 1px;
134}
135
136.b0org {
137 background: #ffcccc;
138 border: 1px solid #000000;
139 margin: 1px;
140}
141.b1org {
142 background: #ff0000;
143 border: 1px solid #000000;
144 margin: 1px;
145}
146.b2org {
147 background: #990000;
148 border: 1px solid #000000;
149 margin: 1px;
150}
151.b3org {
152 background: #990000;
153 border: 2px solid #000000;
154 margin: 1px;
155}
156.b4org {
157 background: #990000;
158 border: 2px solid #000000;
159 margin: 1px;
160}
161.b5org {
162 background: #990000;
163 border: 2px solid #000000;
164 margin: 1px;
165}
166.b6org {
167 background: #990000;
168 border: 2px solid #000000;
169 margin: 1px;
170}
171
172.exclude {
173 background: #ffffff;
174 border: 1px solid #000000;
175 margin: 1px;
176}
177
178.iplist {
179 background: #00ffff;
180 border: 1px solid #000000;
181 margin: 2px;
182 padding: 2px;
183 position: relative;
184 left: 75px;
185 top: 0px;
186 width: 150px;
187}
188/*.inhere {
189 font-weight: bold;
190}*/
191.inhere {
192 border: 3px solid #ff0000;
193}
194.repeater {
195 font-weight: bold;
196}
197.scroll780 {
198 border: 2px solid #0000ff;
199 height: 780px;
200 width: 820px;
201 overflow: auto;
202}
Note: See TracBrowser for help on using the repository browser.