-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle_Week4_5.css
More file actions
39 lines (31 loc) · 841 Bytes
/
Style_Week4_5.css
File metadata and controls
39 lines (31 loc) · 841 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
/* Add a CSS comment with your name and the current date */
/* Your Name - Date */
body {
color: #000000;
background-color: #D9F1C1;
font-family: "Times New Roman", serif;
}
#outerwrapper {
width: 80%;
margin: 0 auto; /* This will center the div on the page */
}
header, nav, footer {
font-family: Calibri, Arial, sans-serif;
}
#main {
font-family: Garamond, "Times New Roman", serif;
background-color: #F0F9E6;
padding: 10px;
}
img {
float: left;
margin-right: 2%; /* Creates space between the image and the text */
}
nav {
clear: both; /* Ensures that the nav element clears the floated image */
}
footer {
font-size: 0.75em;
text-align: center; /* Centers the text within the footer */
}
/* Additional styles can be added as needed */