Routino SVN Repository Browser

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

ViewVC logotype

Contents of /trunk/web/www/routino/visualiser.css

Parent Directory Parent Directory | Revision Log Revision Log


Revision 569 - (show annotations) (download) (as text)
Wed Dec 29 09:50:50 2010 UTC (14 years, 2 months ago) by amb
File MIME type: text/css
File size: 2096 byte(s)
Added the uncontrolled (not auto-generated) files from routino-1.1.

1 /*
2 // Routino data visualiser web page style sheet.
3 //
4 // Part of the Routino routing software.
5 //
6 // This file Copyright 2008,2009 Andrew M. Bishop
7 //
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 /*----------------------------------*/
24 /* Body HTML formatting */
25 /*----------------------------------*/
26
27 BODY
28 {
29 /* fonts and text styles */
30
31 font-family: sans-serif;
32 font-size: medium;
33
34 /* colours */
35
36 background-color: white;
37 color: black;
38 }
39
40 /*------------*/
41 /* Left panel */
42 /*------------*/
43
44
45 DIV.left_panel
46 {
47 width: 21em;
48
49 position: absolute;
50 top: 0;
51 bottom: 0;
52 right: auto;
53 left: 0;
54
55 padding: 3px;
56 }
57
58 DIV.left_panel INPUT
59 {
60 padding: 0;
61 border: 1px solid;
62 margin: 0;
63
64 text-align: center;
65 }
66
67 DIV.visualiser
68 {
69 width: auto;
70
71 padding: 3px;
72 border: thin solid;
73 }
74
75 DIV.router
76 {
77 width: auto;
78
79 padding: 3px;
80 border: thin solid;
81 }
82
83 DIV #result_status
84 {
85 font-style: italic;
86 }
87
88 DIV.data
89 {
90 width: auto;
91
92 padding: 3px;
93 border: thin solid;
94 }
95
96
97 /*-------------*/
98 /* Right panel */
99 /*-------------*/
100
101
102 DIV.right_panel
103 {
104 position: fixed;
105 top: 0;
106 bottom: 0;
107 right: 0;
108 left: 21.5em;
109 }
110
111 DIV.map
112 {
113 position: absolute;
114 top: 0;
115 bottom: 1.5em;
116 right: 0;
117 left: 0;
118
119 border: 3px solid;
120
121 text-align: center;
122 }
123
124 DIV.attribution
125 {
126 position: absolute;
127 top: auto;
128 bottom: 0;
129 right: 0;
130 left: 0;
131
132 margin: 0px;
133 border: 0px;
134 padding: 0px;
135
136 text-align: center;
137 }