-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 986 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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin-top: -2cm;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin-top: -2cm;
}
h1 {
text-align: center;
}
.social-icons {
display: flex;
justify-content: center;
align-items: center;
margin-top: 1rem;
}
.github img, .linkedin img {
width: 30px;
height: 30px;
filter: invert(1);
background-color: white;
}
.resume-button {
margin-top: -0.5rem;
border: none;
font-size: 1rem;
padding: 0.5rem 1rem;
background-color: transparent;
cursor: pointer;
color: blue;
}
.resume-button:hover {
text-decoration: underline;
}
.github {
margin-right: 2rem;
border: none;
}
.linkedin {
margin-right: 0rem;
border: none;
}
.github:hover,
.linkedin:hover {
filter: invert(1);
}