2024-01-17 12:48:41 +01:00
|
|
|
body {
|
|
|
|
font-family: 'Arial', sans-serif;
|
2024-01-18 21:06:12 +01:00
|
|
|
font-size: 15px;
|
2024-01-17 12:48:41 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #f8f9fa;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cv-container {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 20px auto;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #fff;
|
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2024-01-18 15:19:34 +01:00
|
|
|
header h1,
|
2024-01-17 12:48:41 +01:00
|
|
|
header h2 {
|
|
|
|
color: #007BFF;
|
|
|
|
text-align: center;
|
2024-01-18 21:06:12 +01:00
|
|
|
margin-top: 0px;
|
2024-01-17 12:48:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
2024-01-18 17:57:34 +01:00
|
|
|
.job h3 {
|
2024-01-18 15:19:34 +01:00
|
|
|
color: #007BFF;
|
2024-01-17 18:33:54 +01:00
|
|
|
}
|
|
|
|
|
2024-01-17 12:48:41 +01:00
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.education ul {
|
|
|
|
padding-left: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-01-18 17:57:34 +01:00
|
|
|
.competence p,
|
2024-01-17 12:48:41 +01:00
|
|
|
.education p {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul, ol {
|
|
|
|
list-style-type: disc;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2024-01-18 17:57:34 +01:00
|
|
|
.bouton-imprimer {
|
2024-01-17 18:33:54 +01:00
|
|
|
display: block;
|
2024-01-18 17:57:34 +01:00
|
|
|
margin: 20px auto;
|
2024-01-17 18:33:54 +01:00
|
|
|
padding: 10px 20px;
|
|
|
|
font-size: 18px;
|
2024-01-18 15:19:34 +01:00
|
|
|
background-color: #b71c1c;
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
2024-01-17 18:33:54 +01:00
|
|
|
}
|
|
|
|
|
2024-01-17 12:48:41 +01:00
|
|
|
@media print {
|
|
|
|
body {
|
2024-01-18 21:06:12 +01:00
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-01-17 12:48:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.cv-container {
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2024-01-17 18:33:54 +01:00
|
|
|
|
2024-01-18 17:57:34 +01:00
|
|
|
.bouton-imprimer {
|
2024-01-17 18:33:54 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2024-01-17 12:48:41 +01:00
|
|
|
}
|