-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyling Lake Wildlife.css
57 lines (49 loc) · 1.28 KB
/
Styling Lake Wildlife.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
/* Style sheet created by: Mayer Alvarez Vivanco on 2024-06-06 */
/* Style for body specifies a background color */
body {
background-color: #000033;
}
/* Style for the container centers the page and specifies the width */
#container {
width: 90%;
margin-left: auto;
margin-right: auto;
}
/* Style for the header specifies top margin, background color, rounded corners, and center align content */
header {
margin-top: 0.2em;
text-align: center;
font-size: 2em;
font-weight: bold;
color: #FFFFFF; /* Added color for header */
}
/* Style for the main */
main {
display: block;
font-family: Verdana, Arial, sans-serif;
font-size: 1em;
margin-top: 0.5em;
padding: 1em;
border-radius: 1em;
background-color: #E6E6FF;
border: inset 0.2em #7A6D68;
}
/* Style center aligns paragraph elements within the main element */
main p {
text-align: center;
}
/* Style for figure element */
figure {
text-align: center;
}
/* Style for img element */
img {
padding: 1em;
}
/* Style for the footer specifies font size, text alignment, and top margin */
footer {
font-size: .90em;
text-align: center;
margin-top: 2em;
color: #FFFFFF; /* Added color for footer */
}