-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (53 loc) · 1016 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans');
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&display=swap');
* {
box-sizing: border-box;
}
html {
height: 100%;
font-family: "Open Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Gowun Batang", serif;
}
body {
background-color: #2d352b;
color: rgb(201, 209, 217);
min-height: 100%;
margin: 0;
padding: 3rem;
display: flex;
justify-content: center;
}
a {
text-decoration: none;
color: rgb(201, 209, 217);
}
li, p {
color: rgb(151, 157, 150);
}
a:hover {
color: white;
}
.icon:hover {
filter: brightness(1.5);
}
.contact {
display: flex;
align-items: center;
gap: 0.5rem;
}
.contact svg {
color: white;
}
.avatar {
display: block;
position: relative;
flex-shrink: 0;
border-radius: 50%;
box-shadow: inset 0 0 0.25rem 0.125rem rgba(20, 20, 34, 0.25);
background-position: 50% 50%;
background-size: cover;
width: 260px;
height: 260px;
}