forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path<css>
More file actions
66 lines (54 loc) · 830 Bytes
/
<css>
File metadata and controls
66 lines (54 loc) · 830 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
<a href="blog-sketch-week-1.png" target="blank">
<img src="blog-sketch-week-1.png" style="border: 1px solid #bababa;">
</a>
nav {
font-weight: 800;
}
nav > ul {
width: 85vw;
display: flex;
flex-direction: row;
justify-content: space-around;
}
html {
font-size: 15px;
}
h1:first-child {
background: #c7c7c7;
}
body {
font-family: sans-serif;
font-size: 1rem;
line-height: 1;
text-align: left;
color: #333;
margin: 0;
}
h1 {
font-size: 2rem;
margin-bottom: 0;
text-align:left;
}
img {
max-width: 80%;
display: block;
height: auto;
margin: 0 auto;
}
#img-div {
background: black;
padding: 10px;
margin: 0;
}
#img-caption {
margin: 5px 0 5px 0;
}
ul {
max-width: 550px;
margin: 0 auto 50px auto;
text-align: left;
line-height: 1.6;
}
li {
margin: 16px 0;
}