-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
117 lines (99 loc) · 1.77 KB
/
style2.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
/*
* 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
*/
/* Whole document */
body {
font-family: Optima, "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 800px;
margin: auto;
background: #FFFFFF;
padding: 10px 10px 10px 10px;
}
/*
.title {
display: none;
}
*/
/* Title of the resume */
h1 {
font-size: 55px;
color: #77838e;
text-align:center;
margin-bottom:15px;
}
/* Titles of categories */
h2 {
font-size: 25px;
color: black;
text-align:left;
margin-bottom:1px;
}
h3 {
font-size: 20px;
color: #2698BA;
text-align:left;
margin-bottom:1px;
}
h4 {
font-size: 18px;
color: #000;
text-align:left;
margin-bottom:1px;
}
/* Definitions */
dt {
float: left;
clear: left;
width: 17%;
font-weight: bold;
}
dd {
margin-left: 17%;
}
p {
margin-top:0;
margin-bottom:7px;
}
ul {
display: block;
list-style-type: disc;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 0;
margin-right: 0;
padding-left: 40px;
}
/* Blockquotes */
blockquote {
text-align: center
}
/* Links */
a {
background-color: #2698BA;
color: white;
padding: 7px 12.5px;
text-align: center;
text-decoration: none;
display: inline-block;
}
article a:link, a:visited {
background-color: #2698BA;
color: white;
padding: 7px 12.5px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: #2698BA;
}
/* Horizontal separators */
hr {
style="visibility:hidden;"
;
}