-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.css
113 lines (90 loc) · 1.44 KB
/
default.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
html {
color: #333;
font-size: 16px;
font-size: 1em;
line-height: 1.4;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Lucida Grande", Arial, sans-serif;
font-weight: 300;
margin: 45px 20px;
transition: margin 1s;
}
/* Reset block level elements */
header,
footer,
section,
h1,
h2,
h3,
div,
p,
ul {
margin: 0;
}
header,
section {
margin-bottom: 25px;
}
ul {
padding-left: 0;
}
li {
margin-left: 1.3em;
margin-top: 0.5em;
}
.job {
margin-top: 20px;
}
.employment-history .job:first-of-type {
margin-top: 10px;
}
.duration {
font-weight: bold;
font-style: italic;
}
.copy {
text-align: center;
font-size: 12px;
font-size: 0.8em;
}
@media only screen and (min-width: 35em) {
body {
width: 80%;
margin: 50px 10% 25px;
}
body section:last-of-type {
margin-bottom: 50px;
}
}
@media only print {
html {
font-size: 12pt;
}
body {
margin: 0;
padding: 0;
}
body section:last-of-type {
margin-bottom: 0;
}
header,
section {
margin-bottom: 15px;
}
li {
margin-top: 0.4em;
}
/* Avoid splitting the page within a .job */
.job {
page-break-inside: avoid;
}
.copy {
display: none;
}
}
/* Printer setup */
@page {
size: 8.27in 11.69in;
margin: .6in .4in .4in .4in;
}