-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (65 loc) · 1.13 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
/*
* Copyright 2013 Christophe-Marie Duquesne <[email protected]>
*
* CSS for making a resume with pandoc. Inspired by moderncv.
*
* Modified by Juan Ibiapina
*
* 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
*/
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 800px;
margin: auto;
background: #FFFFFF;
padding: 10px 10px 10px 10px;
color: #5d5d5d;
}
/* Title of the resume */
h1 {
font-size: 55px;
color: #000000;
text-align:center;
margin-bottom:15px;
}
/* Titles of categories */
h2 {
color: #397249;
}
h3 {
margin-bottom: 0;
color: #000000;
}
table {
width: 100%;
}
strong {
font-size: 18px;
}
dt {
float: left;
clear: left;
width: 17%;
font-weight: bold;
}
dd {
margin-left: 17%;
}
p {
margin-top: 0;
margin-bottom: 1em;
}
a {
text-decoration: none;
color: #397249;
}
a:hover, a:active {
background-color: #397249;
color: #FFFFFF;
text-decoration: none;
text-shadow: 1px 1px 1px #333;
}
hr {
color: #A6A6A6;
}