forked from pauloneil071/newMedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteaching.css
73 lines (69 loc) · 1.04 KB
/
teaching.css
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
/*teaching.css for my new media classes at LAGCC*/
html, body{
font-family: "Lucida Console", "Lucida Sans Typewriter", Monaco, "Bitstream Vera Sans Mono", monospace;
font-size:13px;
margin:0;
padding:0;
border:0;
height:100%;
min-height:100%;
}
* html body { /*IE6 hack*/
padding:30px 0;
}
* html #content { /*IE6 hack*/
height:100%;
width:100%;
}
a{
color:#9c63ff;
text-decoration: none;
}
a:hover{
color:#60e386;
}
ul li{
list-style: circle;
}
h2{
color:#ea6ba4;
}
/*LAYOUT*/
#container {
margin:30px 0;
width: 100%;
min-width:800px;
height:100%;
min-height:100%;
}
#header {
position:fixed;
left:0;
width:100%;
color:black;
background: #e5e5e5;
padding-left:15px;
padding-bottom:15px;
height: 40px;
top:0;
}
#main {
min-height:100%;
background: black;
color:#1ee3df;
padding-left: 20px;
padding-top:30px;
}
#footer{
position:fixed;
left:0;
padding-top:15px;
padding-left:10px;
width:100%;
height:25px;
background:#5f5f5f;
color:white;
bottom:0;
}
#footer a{color:#eeed76;}
#footer a:hover{color:#8fdf7d;