-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.css
More file actions
77 lines (72 loc) · 1.33 KB
/
list.css
File metadata and controls
77 lines (72 loc) · 1.33 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
/* 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: greenyellow ;
padding: 30px;
font-size: 30px;
display: block;
color: black;
margin: 0 auto;
border: 10px solid blue;
text-align: center;
}
nav {
display: block;
/* float: left; */
width: 90%;
margin: 0 auto;
}
nav ul {
padding: 15px;
float: left;
border: 5px solid red ;
list-style-type: none;
/* margin: auto; */
}
nav li {
float: left;
}
nav li a {
display: block;
height: 25px;
padding: 5px 5px 5px 5px;
vertical-align: middle;
}
a {
color: black;
}
section {
width: 73%;
display: inline-block;
float: left;
}
article {
border: 5px solid black;
padding: 5px;
margin: 10px;
}
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;
}