-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (62 loc) · 1.19 KB
/
styles.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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/* fonts */
* {
box-sizing: border-box;
font-size: 17px;
}
body {
margin: 0;
padding: 0;
background-color: #FCF8E8;
}
.layout {
display: flex;
align-items: flex-start;
justify-content: center;
}
.content {
width: 100%;
max-width: 800px;
padding: 20px;
}
.headshot {
width: 100px;
height: auto;
clip-path: circle();
}
.footer {
display: flex;
flex-direction: row;
justify-content: right;
align-items: center;
gap: 10px;
}
.socials img {
width: 20px;
}
a,
p {
font-family: "Halant", serif;
font-weight: 400;
font-style: normal;
}
h3 {
font-family: "Nunito Sans", sans-serif;
font-weight: 600;
font-style: normal;
font-size: 20px;
margin-bottom: 0px;
}
a {
color: #3e6994;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style-type: none;
padding: 0px;
}