/[gedafe]/trunk/network_topology/templates/default.css
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/network_topology/templates/default.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8 - (show annotations)
Wed Feb 16 12:41:02 2005 UTC (19 years, 2 months ago) by dpavlin
File MIME type: text/css
File size: 3348 byte(s)
first report

1 /* BODY */
2
3 BODY, TH, TD, INPUT, TEXTAREA, SELECT {
4 font-family: Verdana, sans-serif;
5 font-size: 8pt;
6 }
7
8 BODY {
9 background: #ffffff;
10 margin: 0px;
11 padding: 0px;
12 /* font-family: Georgia, serif ; */
13 font-size: 100%;
14 }
15
16 a, A:link, a:visited {
17 color: #000088;
18 text-decoration: none;
19 }
20
21 a:hover, A:link:hover {
22 color: #000088;
23 background-color: #eeeeee;
24 text-decoration: underline;
25 }
26
27 /* Gedafe */
28
29 .error {
30 clear: both;
31 margin: 2em;
32 padding: 1em;
33 border: 1px dashed #ff0000;
34 background-color: #ffe0e0;
35 }
36
37 .warning {
38 clear: both;
39 margin: 2em;
40 padding: 1em;
41 border: 1px dashed #ffff00;
42 background-color: #ffffe0;
43 }
44
45 /* toolbar markup */
46
47 #lefttoolbar {
48 float: left;
49 display: inline;
50 }
51
52 .dbname {
53 margin-top: 0.5em;
54 margin-left: 0.5em;
55 font-size: 150%;
56 font-weight: bold;
57 color: #000000;
58 }
59
60 .dbuser {
61 padding-top: 1em;
62 margin-left: 1em;
63 color: #c0c0c0;
64 }
65
66 .dbuser em {
67 font-weight: bold;
68 font-style: normal;
69 }
70
71 #righttoolbar {
72 float: right;
73 display: inline;
74 }
75
76 .button, .button:link, .button:visited, .button a, .button a:link, .button a:visited {
77 /* font-family: Vedrana, sans-serif; */
78 margin: 0px;
79 padding: 2px;
80 white-space: nowrap;
81 background-color: #c0c0c0;
82 color: #ffffff;
83 font-size: 80%;
84 border-top: 2px solid #e0e0e0;
85 border-left: 2px solid #e0e0e0;
86 border-right: 2px solid #a0a0a0;
87 border-bottom: 2px solid #a0a0a0;
88 margin-left: 0.1em;
89 margin-right: 0.1em;
90 height: 4ex;
91 }
92
93 .edit-button {
94 clear: both;
95 display: block;
96 text-align: center;
97 }
98
99 .entry {
100 clear: both;
101 margin-left: 1em;
102 }
103
104 /* table bar markup */
105
106 #tabletabs {
107 clear: both;
108 padding-top: 1em;
109 }
110
111 #tables {
112 margin: 0;
113 padding: 0 0 20px 10px;
114 border-bottom: 1px solid #000;
115 font-size: 70%;
116 }
117
118 #tables ul, #tables li {
119 margin: 0;
120 padding: 0;
121 display: inline;
122 list-style-type: none;
123 }
124
125 #tables a:link, #tables a:visited {
126 float: left;
127 line-height: 14px;
128 font-weight: bold;
129 margin: 0 10px 4px 10px;
130 text-decoration: none;
131 color: #999;
132 }
133
134 #tables a:link#current, #tables a:visited#current, #tables a:hover {
135 border-bottom: 4px solid #000;
136 padding-bottom: 2px;
137 margin-bottom: -4px;
138 background: transparent;
139 color: #000;
140 }
141
142 #tables a:hover { color: #000; }
143
144 /* page title -- table name or "New/Edit table name" */
145
146 h1 {
147 clear: left;
148 margin: 0.5em;
149 margin-left: 1em;
150 font-size: 120%;
151 color: #000000;
152 display: inline;
153 float: left;
154 }
155
156 /* search */
157 .search {
158 clear: right;
159 float: right;
160 }
161
162 /* export */
163 .export {
164 clear: right;
165 float: right;
166
167 }
168
169 /* table for < << add >> > buttons */
170 .table-nav {
171 clear: both;
172 display: block;
173 width: 100%;
174 margin: 0px;
175 padding: 0.5em;
176 text-align: center;
177 }
178
179 .list-buttons {
180 clear: both;
181 display: block;
182 text-align: center;
183 color: #c0c0c0;
184 font-size: 80%;
185 }
186
187 .table {
188 clear: both;
189 padding: 0.5em;
190 padding-left: 1em;
191 padding-right: 1em;
192 margin: 0px;
193 width: 100%;
194 }
195
196 .tr {
197 padding: 0px;
198 margin: 0px;
199 }
200
201 .th {
202 background-color: #e0e0e0;
203 }
204
205 .td-odd {
206 background-color: #e0ffe0;
207 }
208
209 .td-even {
210 background-color: #ffffff;
211 }
212
213 .td {
214 padding: 0px;
215 margin: 0px;
216 }
217
218 .td-icons {
219 width: 1em;
220 }
221
222 .edit-label {
223 background-color: #e0e0e0;
224 text-align: left;
225 font-size: 70%;
226 width: 0;
227 }
228
229 .edit-input {
230 background-color: #e0ffe0;
231 text-align: left;
232 }
233
234 .footer {
235 clear: both;
236 border-top: 1px solid #000000;
237 margin-top: 1em;
238 padding-top: 1em;
239 }
240
241 .logo {
242 float: right;
243 }

  ViewVC Help
Powered by ViewVC 1.1.26