-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleft_nav.css
More file actions
59 lines (58 loc) · 1.11 KB
/
left_nav.css
File metadata and controls
59 lines (58 loc) · 1.11 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
html {
height: 100%;
}
body {
width: 800px;
margin: 0 auto;
padding-top: 5px;
height: 100%;
}
header {
background-color: white;
color:white;
text-align:center;
padding:5px;
font-size: 20px;
display: block;
width: 790px;
}
nav {
line-height:30px;
background-color:#eeeeee;
min-height:100%;
width:140px;
display: inline-block;
vertical-align: top;
padding:5px;
font-size: 18px;
}
nav ul {
list-style-type: none;
}
a {
color: black;
}
section {
width: 516px;
display: inline-block;
}
aside {
width: 125px;
display: inline-block;
vertical-align: top;
background-color:#eeeeee;
font-size: 18px;
min-height: 100%;
padding: 8px;
}
aside ul {
list-style-type: none;
}
footer {
width: 790px;
background-color: black;
color:white;
text-align:center;
padding:5px;
display: block;
}