You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
1.6 KiB
95 lines
1.6 KiB
2 years ago
|
/*
|
||
|
* Copyright 2013 Christophe-Marie Duquesne <chmd@chmd.fr>
|
||
|
*
|
||
|
* 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: "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: 42px;
|
||
|
color: #757575;
|
||
|
text-align:center;
|
||
|
margin-bottom:15px;
|
||
|
}
|
||
|
|
||
|
/* Titles of categories */
|
||
|
h2 {
|
||
|
color: #397249;
|
||
|
}
|
||
|
/* There is a bar just before each category */
|
||
|
h2:before {
|
||
|
content: "";
|
||
|
display: inline-block;
|
||
|
margin-right:1%;
|
||
|
width: 16%;
|
||
|
height: 10px;
|
||
|
background-color: #9CB770;
|
||
|
}
|
||
|
|
||
|
/* Definitions */
|
||
|
dt {
|
||
|
float: left;
|
||
|
clear: left;
|
||
|
width: 17%;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
dd {
|
||
|
margin-left: 17%;
|
||
|
}
|
||
|
p {
|
||
|
margin-top:0;
|
||
|
margin-bottom:7px;
|
||
|
}
|
||
|
|
||
|
/* Blockquotes */
|
||
|
blockquote {
|
||
|
text-align: center
|
||
|
}
|
||
|
|
||
|
/* 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;
|
||
|
}
|
||
|
|
||
|
figure[src$='#center']
|
||
|
{
|
||
|
display: block;
|
||
|
margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
|
||
|
whatever floats your boat, but keep the
|
||
|
horizontal 'auto' for this to work */
|
||
|
/* whatever else styles you fancy here */
|
||
|
}
|
||
|
|
||
|
|
||
|
|