Project

General

Profile

« Previous | Next » 

Revision 1884

Added by Dietmar over 11 years ago

! from security reasons the new installation has changed
from the old config.php into new setup.ini.php without
using global constants for critical values like username & password and so on.

View differences:

stylesheet.css
1
@charset "UTF-8";
1
@charset "utf-8";
2 2
/* <![CDATA[ */
3 3
/*
4 4
*/
5 5
* { margin :0px auto; padding :0px; }
6 6
* html body * { overflow :visible; }
7

  
8
html {
9
	padding:0; 	margin:0; border:0;
10
	font-size:85%; font-family: Arial, Verdana, Helvetica, sans-serif;
11
	color: #202020;
12
   overflow :-moz-scrollbars-vertical; overflow-x :auto;
13
}
14
table {font-size: 1em;}
15
body {
16
	padding: 0; border:0; margin: 0;
17
	background: url('background.png') repeat-x 0px 0px;
18
	background-color: #a8bccb;
19
	height: 101%;
20
}
21

  
22
div.body {
23
	width: 790px;
24
	margin: 1em auto;
25
	padding: 20px 20px 5px 20px;
26
	background-color: #ffffff;
27
	border: solid 1px #305c8d
28
}
29
div.content {
30
	margin-top:20px;
31
}
32

  
7
html { padding :0; margin :0; border :0; font-size :85%; font-family :Arial, Verdana, Helvetica, sans-serif; color :#202020; overflow :-moz-scrollbars-vertical; overflow-x :auto; }
8
table { font-size :1em; }
9
body { padding :0; border :0; margin :0; background :url('background.png') repeat-x 0px 0px; height :101%; background :#A8BCCB; }
10
div.body { width :790px; margin :1em auto; padding :20px 20px 5px 20px; border :solid 1px #305C8D; background :#FFFFFF; }
11
div.content { margin-top :20px; }
33 12
/*
34 13
	TABLE Elements
35 14
*/
36
table {
37
	background-color: #f8f8ff;
38
	margin-top: 15px;
39
	margin-bottom: 5px;
40
	width: 100%;
41
	border-style: solid;
42
	border-width: 1px 2px 2px 1px;
43
	border-color: #a3baca;
44
}
45
	table > thead {
46
		background-color: #f2f1ff;
47
	}
48
		table > thead > tr {
49
		}
50
			table > thead > tr > th {
51
				color: #555758;
52
				font-size: 1.15em;
53
				padding: 1.2em 1em;
54
			}
55
			table > thead > tr > td {
56
				color: #555758;
57
				font-size: 1.08em;
58
				padding: 1.2em 1em;
59
			}
60
	table > tbody {
61
		display: block;
62
	}
63
		table > tbody > tr {
64
   border-bottom :1px solid #222222; /* #d2d1cc; */
65
   padding :0.8em 0 0.2em 0;
66
   width :100%;
67
}
68
			table > tbody > tr > th {
69
				font-size: 1em;
70
				width: 1%;
71
				padding-left: 0.8em; padding-right: 0.8em;
72
				vertical-align: top;
73
				text-align: right;
74
				white-space: nowrap;
75
			}
76
			table > tbody > tr > td {
77
				font-size: 1em;
78
				width: 19%;
79
				padding-left: 0.8em; padding-right: 0.8em;
80
				vertical-align: top;
81
				text-align: left;
82
            line-height :2em;
83
			}
84

  
85
td.step-row {
86
   line-height : 3em;
87
   color : #666666;
88
   font-weight : bold;
89
   font-size : 100%;
90
}
91
td.name { 
92
   width : 180px;
93
   color: #666666;
94
   vertical-align :middle;
95
   font-weight : bold;
96
   font-size : 90%;
97
   float :left;
98
 }
99
td.value { 
100
   width : 100%;
101
   vertical-align :middle;
102
 }
103
td.value input { 
104
   width : 100%;
105
   vertical-align :middle;
106
 }
107
 
108
 
109
h1.step-row {
110
   margin : 0;
111
   display :inline;
112
   color : #6699ff;
113
}
15
table { margin-top :15px; margin-bottom :5px; width :100%; border-style :solid; border-width :1px 2px 2px 1px; border-color :#A3BACA; background :#F8F8FF; }
16
	table > thead { background :#F2F1FF; }
17
		table > thead > tr { }
18
			table > thead > tr > th { color :#555758; font-size :1.15em; padding :1.2em 1em; }
19
			table > thead > tr > td { color :#555758; font-size :1.08em; padding :1.2em 1em; }
20
	table > tbody { display :block; }
21
		table > tbody > tr { border-bottom :1px solid #222222; /* #d2d1cc; */ padding :0.8em 0 0.2em 0; width :100%; }
22
			table > tbody > tr > th { font-size :1em; width :1%; padding-left :0.8em; padding-right :0.8em; vertical-align :top; text-align :right; white-space :nowrap; }
23
			table > tbody > tr > td { font-size :1em; width :19%; padding-left :0.8em; padding-right :0.8em; vertical-align :top; text-align :left; line-height :2em; }
24
td.step-row { line-height :3em; color :#666666; font-weight :bold; font-size :100%; }
25
td.name { width :180px; color :#666666; vertical-align :middle; font-weight :bold; font-size :90%; float :left; }
26
td.value { width :100%; vertical-align :middle; }
27
td.value input { width :100%; vertical-align :middle; }
28
h1.step-row { margin :0; display :inline; color :#6699FF; }
114 29
/*
115 30
	FORM Elements
116 31
*/
117
form { margin: 0; }
118
input, select { padding: 2px; border: solid 1px #a3baca; }
119
input:focus, select:focus { background: #fdf8e8; }
120
input.submit    {
121
	color: #305c8d;
122
	font-size: 12px;
123
	font-weight: bold;
124
	text-transform: uppercase;
125
	letter-spacing: 1px;
126
	padding: 6px;
127
	margin: 1em 0;
128
	cursor: pointer;
129
	border: outset 2px green;
130
}
131
input.submit:hover  {
132
	border-style: inset;
133
}
134
input.submit.bad {
135
	background-color: #fde8e8;
136
	border-color: red;
137
}
138
input.submit.good {
139
	background-color: #deffde;
140
	border-color: green;
141
}
32
form { margin :0; }
33
input, select { padding :2px; border :solid 1px #A3BACA; }
34
input:focus, select:focus { background :#FDF8E8; }
35
input.submit { color :#305C8D; font-size :12px; font-weight :bold; text-transform :uppercase; letter-spacing :1px; padding :6px; margin :1em 0; cursor :pointer; border :outset 2px #008000; }
36
input.submit:hover { border-style :inset; }
37
input.submit.bad { border-color :#FF0000; background :#FDE8E8; }
38
input.submit.good { border-color :#008000; background :#DEFFDE; }
142 39
/*
143 40
	COMMON Elements
144 41
*/
145
img {border: none; }
146
p  { margin: 11px 0 4px 0 }
147
h1 { color: #3a628f; font-size: 1.3em; margin: 10px 0 5px; border-top: medium none }
148
a, a:link, a:visited, a:active  { color: #003366; text-decoration: underline }
149
a:focus {outline: none; }
150
a:hover  { color: #336699 }
42
img { border :none; }
43
p { margin :11px 0 4px 0; }
44
h1 { color :#3A628F; font-size :1.3em; margin :10px 0 5px; border-top :medium none; }
45
a, a:link, a:visited, a:active { color :#003366; text-decoration :underline; }
46
a:focus { outline :none; }
47
a:hover { color :#336699; }
151 48
/*
152 49
	HINTS
153 50
*/
154

  
155
.warning, .error {
156
	color: #b70000;
157
	line-height: 1.2em;
158
	background-color: #fde8e8;
159
	margin-top: 0.5em;
160
	padding: 0.3em 0.5em;
161
	border: solid 1px
162
}
163
.warning {
164
	color: #ca6800;
165
}
166
.bad { color: #b70000; }
167
.good { color: #118301; }
168
.warn { color: #ca6800; }
169
.hint { color: #464646; font-size: 0.85em; }
170
.small { font-size: 0.85em; }
171
.italic { font-style: italic; }
172
.center { text-align: center; }
173
.hide { display: none; }
51
.warning, .error { color :#B70000; line-height :1.2em; margin-top :0.5em; padding :0.3em 0.5em; border :solid 1px; background :#FDE8E8; }
52
.warning { color :#CA6800; }
53
.bad { color :#B70000; }
54
.good { color :#118301; }
55
.warn { color :#CA6800; }
56
.hint { color :#464646; font-size :0.85em; }
57
.small { font-size :0.85em; }
58
.italic { font-style :italic; }
59
.center { text-align :center; }
60
.hide { display :none; }
174 61
/*
175 62
	List Elements
176 63
*/
177
ul  { margin: 0; padding: 2px 0 2px 15px; }
178
li  { list-style-type: square; margin: 0; }
64
ul { margin :0; padding :2px 0 2px 15px; }
65
li { list-style-type :square; margin :0; }
179 66
/* ************************************************************************** */

Also available in: Unified diff