-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
144 lines (111 loc) · 1.69 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
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
/* global stuff */
:root {
--page-width: 8.5in;
--page-height: 11in;
--page-margin: 0.5in;
}
@page {
size: var(--page-width) var(--page-height);
margin: var(--page-margin);
}
body {
font-family: 'Lato', sans-serif;
font-weight: 400;
font-size: 10.3pt;
}
strong,
em {
font-style: normal;
font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
margin-top: 0;
margin-bottom: 0.2em;
}
h1 {
font-size: 3em;
}
h1,
h2 {
border-bottom: 1px solid black;
}
a {
color: inherit;
text-decoration-color: #00000040;
}
a:hover {
text-decoration-color: #000000;
}
ul {
padding-inline-start: 2em;
}
header,
section {
margin-bottom: 1em;
}
/* elements */
.nobreak {
display: inline-block;
}
.nobreak > h1,
.nobreak > h2,
.nobreak > h3,
.nobreak > h4,
.nobreak > h5,
.nobreak > h6 {
display: inline-block;
}
.align-right {
text-align: right;
}
/* coursework */
#coursework-list {
columns: 2;
}
/* skills */
#skills hr {
border: none;
border-top: 1px dashed #00000040;
margin: 4px 0 4px 0;
}
/* projects */
#projects > section > a {
display: inline-block;
margin-bottom: 0.25em;
}
/* contact layout */
#contact-info {
columns: 3;
padding: 0;
margin-left: 1.5rem;
}
/* page layout */
.page {
box-sizing: border-box;
margin-left: auto;
margin-right: auto;
padding: var(--page-margin);
width: var(--page-width);
height: var(--page-height);
page-break-inside: avoid;
}
.page:first-of-type {
margin-top: 4em;
}
.card {
box-shadow: 0 10px 20px #00000048, 0 6px 6px #00000059;
}
/* print */
@media print {
.page,
.page:first-of-type {
margin: 0;
}
}