-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (75 loc) · 1.57 KB
/
style.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* 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 {
background-color: #eae2b7;
color: #003049;
font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif;
padding: 40px;
}
/* hyperlinks style & actions*/
a {
font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-seri;
}
a:visited { color: #d62828; }
a:hover { color: #f77f00; }
/* Set the font family for any h1, h2, or h3 heading */
h1,
h2,
h3 {
font-family: "Playfair Display", Times, serif;
text-align: center;
}
/* hyperlinks "About,Portfolio,Contact"*/
header > nav {
text-align: center;
word-spacing: 20px;
padding-bottom: 50px;
}
/*contact me hyperlink*/
main > div > section > article {
padding-top: 0px;
}
article {
padding-top: 50px;
}
article div {
text-align: center;
width: 100%;
}
/* Horizontal ruler*/
hr {
border: 1px solid black;
text-align: center;
width: 600px;
}
p {
line-height: 1.5;
}
/* The div container constrains the content width within the main container to 600px */
div {
margin: auto;
width: 600px;
}
/*images*/
img {
width: 100%;
max-width: 200px;
height: auto;
}
/*Contact section*/
footer > article {
padding-top: 0px;
}
footer > h2 {
text-align: center;
}
/*copyright info*/
footer > p {
padding-top: 50px;
text-align: center;
}
/* Add your solution below */
.image-circle {
border-radius: 100px;
border: 2px solid #003049;
}