/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
85.2.1 by a11emmjo
Combined bannermenu with startview to get correct start-page.
1
@charset "utf-8";
2
/* CSS Document */
3
4
/*
5
 * Standard----------------------------------------------------------------------------------------------------------------------------------------
6
 */
7
8
/* This sets all the margins and paddings to zero so you can controll this individually for each element instead. */
9
* {
10
	margin: 0;
11
	padding: 0;
12
}
13
14
/* This two rows sets 1em to 10px. */
15
html { 
16
	font-size: 125%;
17
}
18
19
body {
20
	font-size: 50%;
21
}
22
23
/*
24
 * Body--------------------------------------------------------------------------------------------------------------------------------------------
25
 */
26
27
/* Places this view below the bannermenu */
28
#coursemenuBody {
29
	position: absolute;
30
	top: 54px;
31
	width: 100%;
32
	font-family:  Arial, Helvetica, sans-serif;
33
	color: #eee;
34
}
35
36
#coursemenuBody a:link, a:visited, a:active {
37
	color: #0a68ad;
38
	text-decoration: none;
39
}
40
41
/*
42
 * Coursemenu--------------------------------------------------------------------------------------------------------------------------------------
43
 */
44
45
/* Centers the bannermenu */
46
#coursemenuWrapper {
47
	width: 1024px;
48
	margin: 0 auto;
49
	z-index: 1;
50
	clear: both;
51
}
52
53
#coursemenu {
54
	width: 160px;
55
	margin-left: 1px;
56
	margin-bottom: 7px;
57
}
58
59
#coursemenuHeader {
60
	height: 14px;
61
	padding: 11px 8px 7px;
62
	border: 1px solid #859800;
63
	background-color: #9db400;
64
	font-size: 1.4em;
65
	font-weight: bold;
66
}
67
68
#coursemenuContent {
69
	padding: 5px 20px;
70
	border: 1px solid #cdcdcd;
71
	background-color: #f5f5f5;
72
	font-size: 1.4em;
73
}