-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (61 loc) · 1.17 KB
/
index.css
File metadata and controls
71 lines (61 loc) · 1.17 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
* {
margin: 10px;
padding: 0;
border: 1;
}
p.image{
background-image:url(rock.jpg);
background-position:center;
}
h1.title
{
font-family: Monaco, Monospace;
color:#ff5900;
}
#fire
{
background: url(img_fire.gif) 0 0;
}
/* Style the body element */
body {
font-family: Monaco, Monospace;
font-size: 24px;
font-weight: 450;
color: #008dc5;
background-color: #ffffff;
}
/* Style the header element */
header {
background-color: #ff5900;
padding: 20px;
}
/* Style the navigation menu */
nav {
display: flex;
justify-content: center;
margin-top: 200px;
}
nav a {
text-decoration: none;
color: #333;
margin: 100px;
}
/* Style the main content area */
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
}
article {
width: 300px;
margin: 20px;
border: 1px solid #c04300;
padding: 20px;
}
/* Style the footer element */
footer {
background-color: #ccc;
padding: 20px;
text-align: center;
}