-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfood.css
More file actions
58 lines (48 loc) · 658 Bytes
/
food.css
File metadata and controls
58 lines (48 loc) · 658 Bytes
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
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
font-family: helvetica;
}
a {
color: whitesmoke;
}
header {
padding: 10px;
background:#888 ;
color:whitesmoke ;
text-shadow: 1px 1px 1px #000;
text-align: center;
}
nav {
background-color: #444;
color: white ;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav ul li {
display: inline-block;
margin: 20px;
font-size: 24px;
}
section {
width: 95%;
margin: 0 auto;
padding: 5px;
min-height: 800px;
}
section img {
margin-top: 20px;
}
footer {
clear: left;
padding: 10px;
background:#333 ;
text-align: center ;
color: whitesmoke;
}