Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/web/www/routino/page-elements.css
Parent Directory
|
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: 1977 byte(s)
Wed Dec 29 09:50:50 2010 UTC (14 years, 2 months ago) by amb
File MIME type: text/css
File size: 1977 byte(s)
Added the uncontrolled (not auto-generated) files from routino-1.1.
1 | /* |
2 | // Style sheet for page elements. |
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 | /* Tabbed DIVs */ |
25 | /*-------------*/ |
26 | |
27 | |
28 | DIV.tab_box |
29 | { |
30 | padding: 3px; |
31 | margin-top: 3px; |
32 | |
33 | width: 100%; |
34 | } |
35 | |
36 | DIV.tab_box > SPAN |
37 | { |
38 | padding: 3px; |
39 | |
40 | cursor: pointer; |
41 | } |
42 | |
43 | DIV.tab_box > SPAN.tab_selected |
44 | { |
45 | border-top: 2px solid; |
46 | border-left: 2px solid; |
47 | border-right: 2px solid; |
48 | |
49 | font-weight: bold; |
50 | |
51 | background: #FFF; |
52 | } |
53 | |
54 | DIV.tab_box > SPAN.tab_unselected |
55 | { |
56 | border-top: 1px solid; |
57 | border-left: 1px solid; |
58 | border-right: 1px solid; |
59 | |
60 | background: #DDD; |
61 | } |
62 | |
63 | DIV.tab_box > SPAN.tab_unselected:hover |
64 | { |
65 | background: #EEE; |
66 | } |
67 | |
68 | |
69 | /*----------------*/ |
70 | /* Show/Hide DIVs */ |
71 | /*----------------*/ |
72 | |
73 | |
74 | DIV.hideshow_box |
75 | { |
76 | min-height: 1em; |
77 | |
78 | border-top: thin solid; |
79 | border-bottom: thin solid; |
80 | border-color: #AAA; |
81 | } |
82 | |
83 | DIV.hideshow_box + DIV.hideshow_box |
84 | { |
85 | border-top: none; |
86 | } |
87 | |
88 | DIV.hideshow_box > SPAN |
89 | { |
90 | margin: 0px; |
91 | padding: 0px; |
92 | padding-right: 2px; |
93 | padding-left: 1px; |
94 | |
95 | cursor: pointer; |
96 | } |
97 | |
98 | DIV.hideshow_box > SPAN.hideshow_show |
99 | { |
100 | float: right; |
101 | display: block; |
102 | |
103 | font-style: italic; |
104 | font-variant: small-caps; |
105 | |
106 | background: #DDD; |
107 | } |
108 | |
109 | DIV.hideshow_box > SPAN.hideshow_show:hover |
110 | { |
111 | background: #EEE; |
112 | } |
113 | |
114 | DIV.hideshow_box > SPAN.hideshow_hide |
115 | { |
116 | display: none; |
117 | } |