-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayout.css
More file actions
79 lines (55 loc) · 1.08 KB
/
Layout.css
File metadata and controls
79 lines (55 loc) · 1.08 KB
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
/*
this imports other style sheets, just like your typical programing language
good for re-using code.
@import url("Tables & Forms.css")
@import "Tables & Forms.css";
both work,
*/
body {
font-family: SansSerif, "DejaVu Sans", C059, sans-serif;
width: 1000px;
color: #414747;
background-color: #fff;
}
#header {
position: fixed;
top: 0;
left: 10px;
margin-left: 10px;
margin-top: 10px;
z-index: 11;
padding: 10px;
background-color: #B9B7BD;
}
#left-page {
margin-top: 70px;
margin-left: 10px;
float: left;
background-color: #EEEDE7;
padding: 10px;
width: 300px;
z-index: 1;
}
#right-page {
margin-top: 70px;
margin-right: 20px;
float: right;
padding-left: 20px;
background-color: #EEEDE7;
width: 60%;
}
#footer {
position: fixed;
bottom: 0;
left: 10px;
z-index: 10;
background-color: #EEEDE7;
padding-left: 10px;
padding-right: 10px;
overflow: auto;
width: 100%;
}
#header h2, li, ul{
list-style: none;
display: inline;
}