forked from Thinkful-Ed/starter-pete-thinkful-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (116 loc) · 1.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* The @import rule below imports the Playfair Display and Source Sans Pro fonts into the stylesheet*/
@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;
}
/* Headings */
h1,
h2,
h3 {
font-family: "Playfair Display", Times, serif;
text-align: center;
}
/* Header*/
header {
justify-content: center;
align-items: center;
display: flex;
}
/* Containers */
div {
background-color: #eae2b7;
margin: auto;
width: 600px;
}
article {
padding: 50px 0;
}
/*article div {
text-align: center;
width: 100%;
}
*/
article div {
width: 100%;
}
/* Paragraphs */
p {
line-height: 1.5;
}
/*.h {padding: 0 300px}*/
/* Links */
a:link {
color: #d62828;
}
a:hover {
color: #f77f00;
}
nav a {
padding-left: 20px;
}
/* Images */
img {
width: 100%;
max-width: 200px;
height: auto;
}
.image-circle {
border: 2px solid #003049;
border-radius: 50%;
}
/* Footer */
footer {
text-align: center;
}
/* Other page elements */
hr {
border: 1px solid black;
}
/* Groups and items */
/*.group {
display: flex;
flex-direction: row;
align-items:center;
justify-content:center;
}
.item {
margin: 0 auto px;
padding: 0px;
align-items: center;
}
.about-section .flex-container {
display: flex;
align-items: center;
padding : 0 200px
}
.about-section .image-circle {
margin-right: 20px;
}
.about-section .text-section {
text-align: left;
}
.about-section .right-align {
text-align: left;
}
.text.left {
text-align: left;
}
.portfolio-section {
display: flex;
justify-content: space-between;
} */
.about {
display:flex;
text-align: left;
}
.portfolio {
display:flex;
text-align: center;
}
.portfolio section {
padding: 5px;
font-size: 14px;
}