Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Annotation of /branches/MSVC/web/www/routino/router.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1007 - (hide annotations) (download) (as text)
Fri Jun 29 17:58:27 2012 UTC (12 years, 8 months ago) by amb
Original Path: trunk/web/www/routino/router.css
File MIME type: text/css
File size: 3515 byte(s)
Remove all style definitions from HTML files except for "display:none".

1 amb 569 /*
2     // Routino router web page style sheet.
3     //
4     // Part of the Routino routing software.
5     //
6 amb 1001 // This file Copyright 2008-2012 Andrew M. Bishop
7 amb 569 //
8     // This program is free software: you can redistribute it and/or modify
9     // it under the terms of the GNU Affero General Public License as published by
10     // the Free Software Foundation, either version 3 of the License, or
11     // (at your option) any later version.
12     //
13     // This program is distributed in the hope that it will be useful,
14     // but WITHOUT ANY WARRANTY; without even the implied warranty of
15     // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     // GNU Affero General Public License for more details.
17     //
18     // You should have received a copy of the GNU Affero General Public License
19     // along with this program. If not, see <http://www.gnu.org/licenses/>.
20     */
21    
22    
23 amb 577 /*--------------------------------*/
24     /* Left panel - override defaults */
25     /*--------------------------------*/
26 amb 569
27 amb 577 DIV.hideshow_box
28 amb 569 {
29 amb 577 overflow-x: auto;
30 amb 569 }
31    
32    
33 amb 577 /*------------------------------*/
34     /* Left panel - generic options */
35     /*------------------------------*/
36 amb 569
37 amb 577 DIV.scrollable
38 amb 569 {
39 amb 577 overflow: auto;
40 amb 569
41 amb 577 height: 20em;
42 amb 569 }
43    
44 amb 572
45 amb 577 /*-----------------------------------*/
46     /* Left panel - specific tab options */
47     /*-----------------------------------*/
48 amb 569
49 amb 577 DIV#tab_options_div IMG
50 amb 569 {
51     cursor: pointer;
52     vertical-align: bottom;
53     }
54    
55 amb 577 DIV#tab_options_div IMG:hover
56 amb 574 {
57     background: #F0F000;
58     }
59    
60 amb 577 DIV#tab_options_div TABLE
61 amb 569 {
62     padding: 0;
63     border: 0 hidden;
64     margin: 0;
65     }
66    
67 amb 577 DIV#tab_options_div TABLE TD
68 amb 569 {
69     padding: 0;
70     border: 0;
71     margin: 0;
72     }
73    
74 amb 1005 DIV#tab_options_div A:hover
75     {
76     background: #F0F000;
77     }
78    
79 amb 577 DIV#tab_options_div INPUT
80 amb 569 {
81     padding: 0;
82     border: 1px solid;
83     margin: 0;
84 amb 1001 }
85 amb 569
86 amb 1001 DIV#tab_options_div INPUT[type="text"]
87     {
88 amb 569 text-align: right;
89     }
90    
91 amb 1007 DIV#tab_options_div INPUT[size="20"]
92     {
93     text-align: left;
94     }
95    
96 amb 577 DIV#tab_options_div INPUT:hover
97 amb 574 {
98     background: #F0F0C0;
99     }
100    
101 amb 577 DIV#tab_options_div INPUT#shortest
102 amb 569 {
103     margin: 3px;
104     border: 3px solid;
105    
106     border-color: #00FF00;
107    
108     background: #C0F0C0;
109    
110     text-align: center;
111     }
112    
113 amb 577 DIV#tab_options_div INPUT#quickest
114 amb 569 {
115     margin: 3px;
116     border: 3px solid;
117    
118     border-color: #0000FF;
119    
120     background: #C0C0F0;
121    
122     text-align: center;
123     }
124    
125 amb 577 DIV#tab_results_div TABLE
126 amb 569 {
127 amb 572 border-collapse: collapse;
128     border: hidden;
129     }
130    
131 amb 577 DIV#tab_results_div TD.distance
132 amb 569 {
133 amb 577 text-align: left;
134 amb 569 }
135    
136 amb 577 DIV#tab_results_div TD.highway
137 amb 574 {
138 amb 569 text-align: left;
139 amb 577 padding-left: 10px;
140 amb 569 }
141    
142 amb 577 DIV#tab_results_div DIV#shortest_links A:hover
143 amb 569 {
144     background: #C0F0C0;
145     }
146    
147 amb 577 DIV#tab_results_div DIV#shortest_route TR:hover
148 amb 569 {
149     cursor: pointer;
150    
151     background: #C0F0C0;
152     }
153    
154 amb 577 DIV#tab_results_div DIV#quickest_links A:hover
155 amb 569 {
156     background: #C0C0F0;
157     }
158    
159 amb 577 DIV#tab_results_div DIV#quickest_route TR:hover
160 amb 569 {
161     cursor: pointer;
162    
163     background: #C0C0F0;
164     }
165    
166    
167 amb 577 /*-------------------------------------------------*/
168     /* Popup - using the styles defined in HTML output */
169     /*-------------------------------------------------*/
170 amb 569
171 amb 577 DIV.popup table {table-layout: fixed; border: none; border-collapse: collapse;}
172     DIV.popup tr {border: 0px;}
173     DIV.popup tr.c {display: none;} /* coords */
174     DIV.popup tr.n {} /* node */
175     DIV.popup tr.s {} /* segment */
176     DIV.popup tr.t {font-weight: bold;} /* total */
177     DIV.popup td.l {font-weight: bold;}
178     DIV.popup td.r {}
179     DIV.popup span.w {font-weight: bold;} /* waypoint */
180     DIV.popup span.h {text-decoration: underline;} /* highway */
181     DIV.popup span.d {} /* segment distance */
182     DIV.popup span.j {font-style: italic;} /* total journey distance */
183     DIV.popup span.t {font-variant: small-caps;} /* turn */
184     DIV.popup span.b {font-variant: small-caps;} /* bearing */