-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume-style.css
More file actions
103 lines (87 loc) · 1.45 KB
/
resume-style.css
File metadata and controls
103 lines (87 loc) · 1.45 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
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
line-height: 1.2;
margin: 0.75in auto;
color: #333;
max-width: 6.5in;
}
.header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 8px;
}
.header h1 {
margin: 0;
font-size: 18pt;
font-weight: normal;
text-align: left;
line-height: 1.2;
}
.contact-info {
text-align: right;
font-style: normal;
font-size: 10pt;
line-height: 1.2;
margin-top: 0;
}
.separator {
border-top: 1px solid #333;
margin: 12px 0;
}
h2 {
font-size: 14pt;
font-weight: normal;
margin-top: 16px;
margin-bottom: 6px;
border-bottom: 1px solid #ddd;
padding-bottom: 2px;
}
h3 {
font-size: 12pt;
font-weight: bold;
margin-top: 10px;
margin-bottom: 4px;
}
h3.job-header {
font-weight: normal;
}
.job-title {
font-weight: normal;
font-size: 12pt;
}
.job-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 4px;
}
.job-date {
font-style: normal;
font-size: 9pt;
text-align: right;
}
ul {
margin: 6px 0;
padding-left: 20px;
}
li {
margin-bottom: 3px;
font-size: 9pt;
}
.education {
font-size: 12pt;
}
/* Print styles */
@media print {
body {
margin: 0.5in;
}
.header h1 {
font-size: 16pt;
}
h2 {
font-size: 11pt;
}
}