-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathresume.css
111 lines (104 loc) · 1.83 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
/*
* Copyright 2013 Christophe-Marie Duquesne <[email protected]>
*
* CSS for making a resume with pandoc. Inspired by moderncv.
*
* This CSS document is delivered to you under the CC BY-SA 3.0 License.
* https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
*/
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Comic+Neue&family=EB+Garamond:wght@800&family=Lato&display=swap');
/* Whole document */
body {
font-family: 'Lato';
width: 8in;
margin: auto;
background: #FFFFFF;
}
/*
.title {
display: none;
}
*/
/* Title of the resume */
h1 {
font-size: 23px;
color: #757575;
text-align:center;
margin-bottom: 0px;
}
/* Titles of categories */
h2 {
font-size: 1.2em;
margin-bottom: 0px;
margin-top: 0px;
padding-top: 8px;
padding-bottom: 8px;
}
ul {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
padding-bottom: 0;
}
li {
padding: 3px;
}
li ul li {
padding: 0px;
}
h3 {
font-family: 'EB Garamond';
margin-top: 5px;
margin-bottom: 5px;
font-size: 1.1em;
color: #777;
border-bottom: 1px solid lightgray;
}
h3 right {
float: right;
}
#acq {
margin-left: 0px;
}
h5 {
margin: 0;
font-weight: normal;
}
/* There is a bar just before each category */
/* Definitions */
dt {
float: left;
clear: left;
width: 17%;
font-weight: bold;
}
dd {
margin-left: 17%;
}
p {
margin-left: 15px;
margin-bottom: 0px;
margin-top: 0px;
}
/* Blockquotes */
blockquote {
text-align: center;
font-size: 12px;
margin: 0;
margin-top: 4px;
}
/* Links */
a {
text-decoration: none;
color: #397249;
}
a:hover, a:active {
background-color: #397249;
color: #FFFFFF;
text-decoration: none;
text-shadow: 1px 1px 1px #333;
}
/* Horizontal separators */
hr {
color: #A6A6A6;
}