-
Notifications
You must be signed in to change notification settings - Fork 7
/
top_nav.css
61 lines (59 loc) · 1.14 KB
/
top_nav.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
/* Note to students: Some properties are given to you to fill out,
others you can modify as they stand, and if you have time,
there are definitely some properties you should add!*/
html {
height: 100%;
}
body {
width: 800px;
height: 100%;
}
header {
background-color: ;
padding: 5px;
font-size: ;
display: block;
}
nav {
float: left;
}
nav ul {
padding: ;
float: left;
border-bottom: ;
list-style-type: none;
}
nav li {
float: left;
}
nav li a {
display: block;
height: 25px;
padding: 12px 18px 8px 18px;
vertical-align: middle;
}
a {
color: ;
}
section {
width: 73%;
display: inline-block;
float: left;
}
aside {
width: 17%;
display: inline-block;
background-color:;
padding:;
min-height: 100%;
}
aside ul {
list-style-type: none;
}
footer {
width: 790px;
background-color:;
color:;
clear: both;
display: block;
}