1 |
865
|
doc
|
/**
|
2 |
|
|
* $Id$
|
3 |
|
|
* Website Baker template: allcss
|
4 |
|
|
* This template is one of four basis templates distributed with Website Baker.
|
5 |
|
|
* Feel free to modify or build up on this template.
|
6 |
|
|
*
|
7 |
|
|
* This file contains all CSS definitions required to display the template
|
8 |
|
|
* in the Website Baker frontend.
|
9 |
|
|
*
|
10 |
|
|
* LICENSE: GNU General Public License
|
11 |
|
|
*
|
12 |
|
|
* @author Ryan Djurovich, C. Sommer
|
13 |
|
|
* @copyright GNU General Public License
|
14 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
15 |
|
|
* @version 2.70
|
16 |
|
|
* @platform Website Baker 2.7
|
17 |
|
|
*
|
18 |
|
|
* Website Baker is free software; you can redistribute it and/or modify
|
19 |
|
|
* it under the terms of the GNU General Public License as published by
|
20 |
|
|
* the Free Software Foundation; either version 2 of the License, or
|
21 |
|
|
* (at your option) any later version.
|
22 |
|
|
*
|
23 |
|
|
* Website Baker is distributed in the hope that it will be useful,
|
24 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
25 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
26 |
|
|
* GNU General Public License for more details.
|
27 |
|
|
*/
|
28 |
|
|
|
29 |
|
|
body,td,th {
|
30 |
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
31 |
|
|
font-size: 12px;
|
32 |
|
|
color: #000;
|
33 |
|
|
}
|
34 |
|
|
body {
|
35 |
|
|
background-color: #036;
|
36 |
|
|
background-image: url(images/background.jpg);
|
37 |
|
|
background-repeat: repeat-x;
|
38 |
|
|
margin: 10px;
|
39 |
|
|
}
|
40 |
|
|
a:link, a:visited, a:active {
|
41 |
|
|
color: #036;
|
42 |
|
|
text-decoration: none;
|
43 |
|
|
}
|
44 |
|
|
a:hover {
|
45 |
|
|
color: #369;
|
46 |
|
|
text-decoration: none;
|
47 |
|
|
}
|
48 |
|
|
hr {
|
49 |
|
|
margin: 15px 0px 15px 0px;
|
50 |
|
|
color: #036;
|
51 |
|
|
height: 1px;
|
52 |
|
|
width: 100%;
|
53 |
|
|
}
|
54 |
|
|
h1 {
|
55 |
|
|
font-size: 18px;
|
56 |
|
|
color: #036;
|
57 |
|
|
margin: 5px 0px 5px 0px;
|
58 |
|
|
}
|
59 |
|
|
h2 {
|
60 |
|
|
font-size: 15px;
|
61 |
|
|
color: #369;
|
62 |
|
|
margin: 15px 0px 5px 0px;
|
63 |
|
|
}
|
64 |
|
|
form {
|
65 |
|
|
margin: 0;
|
66 |
|
|
}
|
67 |
|
|
.header {
|
68 |
|
|
width: 750px;
|
69 |
|
|
height: 80px;
|
70 |
|
|
background-color: #FFF;
|
71 |
|
|
vertical-align: top;
|
72 |
|
|
}
|
73 |
|
|
.menu {
|
74 |
|
|
vertical-align: top;
|
75 |
|
|
background-color: #FFF;
|
76 |
|
|
width: 170px;
|
77 |
|
|
padding: 0px;
|
78 |
|
|
}
|
79 |
|
|
.menu ul, .menu li{
|
80 |
|
|
list-style-type: none;
|
81 |
|
|
margin: 0;
|
82 |
|
|
padding: 0;
|
83 |
|
|
}
|
84 |
|
|
.menu ul {
|
85 |
|
|
border-bottom: 0px;
|
86 |
|
|
background-color: #036;
|
87 |
|
|
}
|
88 |
|
|
.menu ul ul {
|
89 |
|
|
padding-left: 10px;
|
90 |
|
|
}
|
91 |
|
|
.menu a:link, .menu a:visited, .menu a:active {
|
92 |
|
|
padding: 4px 10px 4px 10px;
|
93 |
|
|
color: #FFF;
|
94 |
|
|
display: block;
|
95 |
|
|
background-color: #036;
|
96 |
|
|
text-decoration: none;
|
97 |
|
|
}
|
98 |
|
|
.menu a:hover {
|
99 |
|
|
background-color: #369;
|
100 |
|
|
text-decoration: none;
|
101 |
|
|
}
|
102 |
1530
|
Luisehahne
|
.menu-current {
|
103 |
865
|
doc
|
font-weight: bold;
|
104 |
|
|
}
|
105 |
|
|
.highlight {
|
106 |
|
|
background-color: #D0D0D0;
|
107 |
|
|
}
|
108 |
|
|
.border {
|
109 |
|
|
font-size: 1px;
|
110 |
|
|
height: 10px;
|
111 |
|
|
}
|
112 |
|
|
.login {
|
113 |
|
|
padding: 2px 10px 2px 10px;
|
114 |
|
|
font-size: 10px;
|
115 |
|
|
background-color: #036;
|
116 |
|
|
color: #FFF;
|
117 |
|
|
text-align: center;
|
118 |
|
|
}
|
119 |
|
|
.login input {
|
120 |
|
|
width: 95%;
|
121 |
|
|
font-size: 10px;
|
122 |
|
|
}
|
123 |
|
|
.login a:link, .login a:visited, .login a:active {
|
124 |
|
|
color: #DDD;
|
125 |
|
|
text-decoration: none;
|
126 |
|
|
}
|
127 |
|
|
.login a:hover {
|
128 |
|
|
color: #FFF;
|
129 |
|
|
text-decoration: none;
|
130 |
|
|
}
|
131 |
|
|
.powered_by {
|
132 |
|
|
padding: 3px 0px 0px 15px;
|
133 |
|
|
background-color: #FFF;
|
134 |
|
|
}
|
135 |
|
|
.content {
|
136 |
|
|
padding: 10px;
|
137 |
|
|
background-color: #FFF;
|
138 |
|
|
height: 300px;
|
139 |
|
|
vertical-align: top;
|
140 |
|
|
text-align: left;
|
141 |
|
|
}
|
142 |
|
|
.footer {
|
143 |
|
|
padding: 5px;
|
144 |
|
|
height: 20px;
|
145 |
|
|
color: #FFF;
|
146 |
|
|
vertical-align: middle;
|
147 |
|
|
text-align: center;
|
148 |
1773
|
Luisehahne
|
}
|
149 |
|
|
/* here you can style the account templates */
|
150 |
|
|
.note { background :#eeffee; border :0.2em #448844 solid; color :#004400; margin-bottom :1em; padding :0.63em; }
|
151 |
|
|
.warning { background :#ffeeee; border :1px #884444 solid; color :#440000; margin-bottom :1em; padding :1.5em; }
|
152 |
|
|
div.account { width :80%; margin :1em auto; }
|
153 |
|
|
div.account div.signup,
|
154 |
|
|
div.account div.details,
|
155 |
|
|
div.account div.email,
|
156 |
|
|
div.account div.password { background : transparent none repeat-x top; width :100%; overflow :hidden; border :0px solid #cccccc; margin-bottom :1em; border-radius :10px; -khtml-border-radius :10px; -webkit-border-radius :10px; -moz-border-radius :10px; }
|
157 |
|
|
div.account h3 { width :100%; color :#00016f; padding :5px; margin-top :3px; border-bottom :1px solid #000; }
|
158 |
|
|
div.account table { vertical-align :0px; table-layout :auti; width :100%; margin :10px auto; }
|
159 |
|
|
div.account table tr { width :100%; }
|
160 |
|
|
div.account table td { width :30%; }
|
161 |
|
|
div.account table td.button { width :100%; text-align :center; }
|
162 |
|
|
div.account table td.button button { text-align :center; padding :2px; }
|
163 |
|
|
div.account table td.input { width :50%; }
|
164 |
|
|
.nixhier { display :none; }
|
165 |
|
|
.center { text-align :center; }
|
166 |
|
|
div.account table td.input input { width :90%; }
|
167 |
|
|
/* DIV-mbox to show selector or simply content only ************************* */
|
168 |
|
|
div.mbox { padding :0.6em; margin :1em auto; background-color : #f3f5f8; color :#330033; font-size :1.1em; display :block; }
|
169 |
|
|
/* extension for mbox to show additional icons on left side ***************** */
|
170 |
|
|
div.mbox-icon { background-repeat :no-repeat; background-image :url(../images/info_50.png); background-position :15px 50%; padding :15px; min-height :25px; }
|
171 |
|
|
div.mbox-icon div { margin-left :70px; border-left :3px outset; padding-left :5px; }
|
172 |
|
|
div.mbox-icon16 { background-repeat :no-repeat; background-image :url(../images/info_16.png); background-position :5px 50%; padding :5px; min-height :10px; }
|
173 |
|
|
div.mbox-icon16 div { margin-left :30px; border-left :4px outset; padding-left :5px; }
|
174 |
|
|
/* coloring of the mbox and other boxes also ******************************** */
|
175 |
|
|
div.box-ok { border-color :#008000; color :#008000; }
|
176 |
|
|
div.box-error { border-color :#ff0000; color :#ff0000; }
|
177 |
|
|
div.box-info { border-color :#bb7a00; color :#003ff2; }
|
178 |
|
|
div.box-warning { border-color :#ffa500; color :#ffa500; }
|
179 |
|
|
/* Border attributes for mbox and other elements also *********************** */
|