-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
158 lines (130 loc) · 2.4 KB
/
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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body {
font-family: "Times New Roman", Times, sans-serif;
/* 13px to 15px looks good */
font-size: 15px;
/* 1.38, 1.4, or 1.5 looks good */
line-height: 1.4;
margin: 0 auto;
}
#wrapper {
margin: 0 auto;
max-width: 800px;
}
/* when generating the resume as a website or as headless, this will keep a nice readable margin in place */
#resume {
margin: 0.4in;
}
/* use-case is when a user generates their resume as a website, saves their website as a PDF, and uses their browser to manage the margins during save */
@media print {
#resume {
margin: 0;
}
}
ul {
margin-bottom: 0;
}
li {
margin-bottom: 2px;
}
a {
color: black;
/* it's less likely someone will click the links; removing underline to reduce noise */
text-decoration: none;
}
.display-none {
/* note: this is to enable any automated parsing of content */
display: none;
}
.basics {
display: flex;
align-items: center;
justify-content: space-between;
}
.basics>* {
flex-grow: 1;
flex-shrink: 1;
flex-basis: 30%;
}
#basics-center-content {
text-align: center;
font-size: 30px;
}
#basics-right-content {
text-align: right;
font-size: 13px;
}
.basics .divider {
font-weight: bold;
margin-left: 5px;
margin-right: 5px;
}
.section-block {
display: block;
width: 100%;
}
.section-name {
color: #004687;
display: block;
font-weight: bold;
}
.section-line {
border-color: none;
border-style: hidden;
border-width: 1px;
margin-top: 10px;
margin-bottom: 5px;
}
.section-intro-line {
border-color: #004687;
border-style: solid;
border-width: 1px;
margin-top: 0px;
margin-bottom: 5px;
}
#work-block .block-header,
#volunteer .block-header {
display: flex;
align-items: center;
justify-content: space-between;
}
#work-block .block-header>*,
#volunteer .block-header>* {
flex-grow: 1;
flex-shrink: 1;
flex-basis: 30%;
}
.block-header .date {
font-weight: bold;
text-align: right;
}
.block-header .organization {
font-weight: bold;
text-align: left;
}
.block-header .title {
font-weight: bold;
text-align: center;
}
.section-content {
display: block;
}
.section-content ul {
padding-left: 20px;
margin-top: 3px;
list-style-type: circle;
}
.section-content .title {
font-weight: bold;
}
.section-content .date {
float: right;
}
.section-content .separator {
height: 7px;
}
.summary {
margin-top: 6px;
}
.job-block {
page-break-inside: avoid;
}