ubuntuusers.de

kein Titel

Datum:
16. Februar 2006 22:29
Code:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 *author: Aistleithner Florian
 *date: 2006-02-16
 *last change: 2006-02-16
 *TODO:
 *changelog:
	-div.main
 */


/*The allsurrounding div*/
div.main{
	width:800px;
	margin-left: -400px;
	left: 50%;
	min-height: 99.99%;
	height: 99.99%;
	position: absolute;
	top: 0px;
	background: purple;	
}
/*This div surrounds the topimage and the headerimage*/
div.head_sur{
	width: 800px;
	padding:0px;
	margin-bottom: 7px;
	height: 208px;
}
/*The image on top*/
div.topimage{
	background: url(../images/h_logo.jpg);
	height: 70px;
	padding:0px;
	margin-bottom: 7px;
}
/*The header-image*/
div.headerimage{
	padding:0px;
	margin: 0px;
	height: 131px;
}

/*The div that surrounds the menu and the content*/
div.body_sur{
	padding:0px;
	margin: 0px;
	margin-top: 0px;
	position: relative;
	background: yellow;
}

/*The menu-div*/
div.menu{
	padding:0px;
	margin: 0px;
	width: 140px;
	/*background: blue;*/
	float: left;
	background-color:#9FB6C8;
	min-height: 100%;
	height: 100%;
}

/*The content-div*/
div.contentdiv{
	padding:0px;
	margin: 0px;
	width:653px;
	/*background: red;*/
	float: right;
	background-color: #EEF2F5;
	min-height: 100%;
	height: 100%;
}

img {
	border: 0px;
	padding: 0px;
	/*This hack is because M$ Internet Explorer sucks!!!!!111*/
	margin-bottom: -4px; !important
	margin-bottom: 0px;
}

img.moduletable{
	border: 0px;
	padding: 0px;
	/*This hack is because M$ Internet Explorer sucks!!!!!111*/
	margin-bottom: -4px; !important
	margin-bottom: 0px;
}

a {
	text-decoration:none; 
	color:#3b3b3b; 
	line-height:18px; 
	font-family: Verdana; 
	font-size:13px;
}
#active_menu{ font-weight:bold;}