-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
90 lines (73 loc) · 1.26 KB
/
resume.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
:root {
box-sizing: border-box;
--highlight-color: #41b3b3;
}
*, ::before, ::after {
box-sizing: inherit;
}
body {
display: grid;
grid-template-columns: 33% auto;
grid-template-areas: "aside header" "aside main";
font-family: "Times New Roman", Times, serif;
}
aside {
grid-area: aside;
margin-right: 1em;
background-color: var(--highlight-color);
color: white;
}
aside>section {
padding: 0 2em 0 .5em;
}
aside h4 {
text-transform: uppercase;
}
aside ul:not(.list-skills) {
list-style-type: none;
padding-left: 1em;
}
aside li+li {
margin-top: .5em;
}
header {
grid-area: header;
margin-right: 1em;
}
main {
grid-area: main;
padding-bottom: 2em;
margin-right: 1em;
}
.profile-picture {
width: 100%;
padding: 1.5em;
border-radius: 50%;
}
.profile-name {
text-align: center;
font-size: 2em;
}
.title {
text-transform: uppercase;
color: var(--highlight-color);
}
.work-period {
color: grey;
font-style: italic;
}
.work-period+* {
margin-top: .2em;
}
.icon-list>li {
display: grid;
grid-template-columns: fit-content(10%) auto;
gap: 0.5em;
}
.material-icons.md-18 {
font-size: 18px;
}
.proprietary-icon {
width: 18px;
fill: white;
}