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
|
@charset "utf-8";
/* CSS Document */
/*
* Standard----------------------------------------------------------------------------------------------------------------------------------------
*/
/* This sets all the margins and paddings to zero so you can controll this individually for each element instead. */
* {
margin: 0;
padding: 0;
}
/* This two rows sets 1em to 10px. */
html {
font-size: 125%;
}
body {
font-size: 50%;
}
/*
* Body--------------------------------------------------------------------------------------------------------------------------------------------
*/
/* Places this view below the bannermenu */
#coursemenuBody {
position: absolute;
top: 54px;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
color: #eee;
}
#coursemenuBody a:link, a:visited, a:active {
color: #0a68ad;
text-decoration: none;
}
/*
* Coursemenu--------------------------------------------------------------------------------------------------------------------------------------
*/
/* Centers the bannermenu */
#coursemenuWrapper {
width: 1024px;
margin: 0 auto;
z-index: 1;
clear: both;
}
#coursemenu {
width: 160px;
margin-left: 1px;
margin-bottom: 7px;
}
#coursemenuHeader {
height: 14px;
padding: 11px 8px 7px;
border: 1px solid #859800;
background-color: #9db400;
font-size: 1.4em;
font-weight: bold;
}
#coursemenuContent {
padding: 5px 20px;
border: 1px solid #cdcdcd;
background-color: #f5f5f5;
font-size: 1.4em;
}
|