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
|
body{
margin:0;
padding:0;
overflow-x:hidden;
}
/* Header styling */
#header{
position:fixed;
margin:0;
padding:0;
float:left;
width:100%;
height:50px;
border:1px solid #111111;
background-color: #333333;
-webkit-box-shadow: 0 0 8px #D0D0D0;
}
/* Container for logo */
#logoContainer {
margin-top:0px;
margin-left:8em;
margin-right:2em;
height:50px;
}
/* Logo picture and link */
.logo{
display:block;
position: absolute;
width: 162px;
height: 51px;
background-image: url(../img/logo.png);
background-repeat:no-repeat;
text-indent: -99999px;
}
/* Course title */
span.title{
line-height:200%;
margin-top:2em;
margin-left:7em;
color:white;
font-size:2em;
text-shadow: 0.5px 0.5px #ddd;
}
|