-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
60 lines (53 loc) · 913 Bytes
/
header.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
header {
display: grid;
grid-template-columns: 80px 1fr;
grid-template-rows: repeat(6, auto);
padding: 17px;
}
/* thumbnail image */
#thumbnail {
width: 60px;
height: 60px;
border-radius: 50%;
}
#img-lg {
display: none;
}
#email-div,
#github-div,
#linkedin-div,
#coding-experience-div,
#interested-in-div {
grid-column-end: span 2;
padding-top: 17px;
}
/* email symbol */
#email-div i {
font-size: 20px;
margin-right: 8px;
color: var(--darkgreen);
display: none;
}
/* GitHub logo */
#github-div i {
font-size: 20px;
margin-right: 8px;
color: var(--darkgreen);
}
/* LinkedIn logo */
#linkedin-div i {
font-size: 20px;
margin-right: 8px;
color: var(--darkgreen);
}
/* bullets */
#coding-experience-div i,
#interested-in-div i,
#previous-work i,
#voluntary-work i {
font-size: 5px;
margin: 0 10px;
position: relative;
bottom: 2px;
color: var(--darkgreen);
}