-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstlyle.css.css
54 lines (44 loc) · 1.11 KB
/
stlyle.css.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
/* The @import rule below imports the Playfair Display and Source Sans Pro fonts into the stylesheet. You don't have to edit this line.*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Source+Sans+Pro:wght@400&display=swap");
body {
color: #003049;
font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif;
padding: 40px;
}
/* Set the font family for any h1, h2, or h3 heading */
h1{color: gold;
font-family: "source sans pro", Verdana, Geneva, Tahoma, sans-serif;
padding: 35px;
}
h2{color: gold;
font-family: "source sans pro", Verdana, Geneva, Tahoma, sans-serif;
padding: 30px;
h3 {
font-family: "Playfair Display", Times, serif;
}
article {
padding: 50px 0;
}
article div {
text-align: center;
width: 100%;
}
p {
line-height: 1.5;
}
/* The div container constrains the content width within the main container to 600px */
div {
margin: auto;
width: 600px;
}
img {
width: 100%;
max-width: 200px;
height: auto;
}
hr {
border: 1px solid black;
}
<img class="image-circle" src="images/pete-thinkful.png" alt="Pete Thinkful">
.image-circle {
}