-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (51 loc) · 678 Bytes
/
styles.css
File metadata and controls
64 lines (51 loc) · 678 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
59
60
61
62
63
64
body {
width: 100%;
max-width: 1024px;
margin: 0 auto;
background-color: purple;
font-family: 'Coiny';
font-size: 70%;
}
header,
main,
footer {
background-color: aqua;
font-size: 1.6em;
}
header {
padding: 20;
}
header h1 {
text-align: center;
}
h2, h3, h4 {
font-family: 'Coiny', cursive;
font-size: 250%;
text-align: center;
}
h1 {
font-size: 300%;
}
nav ul {
text-align: center;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 60px;
margin-left: 80px;
font-size: 100%;
}
p {
border: 1px solid black;
background-color: orange;
}
figure {
margin: 0;
padding: 0;
text-align: center;
}
img {
width: 65%;
max-width: 100%;
}