-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (86 loc) · 1.49 KB
/
styles.css
File metadata and controls
104 lines (86 loc) · 1.49 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* General Resume Styling */
body {
font-family: Lato;
margin: 40px;
padding: 0;
background-color: white;
color: rgb(57, 57, 57);
}
/* Resume Container */
.resume-container {
max-width: 750px;
margin: auto;
}
/* Header */
header {
text-align: center;
}
header h1 {
font-family: Lato;
font-size: 24px;
margin-bottom: 5px;
text-transform: uppercase;
}
p {
font-size: 14px;
margin: 0;
}
/* Section Styling */
section {
margin-bottom: 20px;
}
h2 {
font-size: 18px;
font-weight:bolder;
color: black;
border-bottom: 1px solid black;
padding-bottom: 2px;
margin-bottom: 5px;
}
h3 {
color: rgb(0, 0, 175);
font-size: 16px;
margin-top: 0px;
margin-bottom: 5px;
}
/* Job Descriptions */
.job, .technical-projects {
margin-bottom: 10px;
}
.job-basic-info {
display: flex;
justify-content: space-between;
}
.job p, .technical-projects p {
font-size: 14px;
font-style: italic;
margin: 5px 0;
}
.job ul, .technical-projects ul {
font-size: 14px;
padding-left: 20px;
margin: 0;
}
.job ul li, .technical-projects ul li {
margin-bottom: 3px;
}
/* Skills */
.skills p, .technical-projects p {
font-size: 14px;
}
.technical-projects .project-tech-stack {
padding-left: 10px;
font-size: 11px;
}
.soft-skills ul {
padding-left: 20px;
}
.soft-skills li {
font-size: 14px;
}
/* Print Optimization */
@media print {
body {
background-color: white;
}
}