Test d'impression du CV

This commit is contained in:
2024-01-17 12:48:41 +01:00
parent bd5753b984
commit 4683b04796
6 changed files with 235 additions and 1 deletions

70
css/CV/MoncefSTITI.css Normal file
View File

@@ -0,0 +1,70 @@
body {
font-family: 'Arial', sans-serif;
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;
}
header h1 {
color: #007BFF;
text-align: center;
}
header h2 {
color: #007BFF;
text-align: center;
}
section {
margin-top: 30px;
}
.job h3 {
color: #007BFF;
}
ul {
list-style-type: none;
padding: 0;
}
.skills ul,
.education ul {
padding-left: 20px;
margin-bottom: 10px;
}
.skills p,
.education p {
margin-bottom: 10px;
}
ul, ol {
list-style-type: disc;
padding: 0;
}
@media print {
body {
width: 21cm;
height: 29.7cm;
margin: 20mm;
}
.cv-container {
max-width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
border-radius: 0;
}
}

View File

@@ -0,0 +1,70 @@
.equipe-section {
margin: 40px 0;
}
.membre-equipe {
margin-bottom: 40px;
display: flex;
align-items: center;
}
.membre-equipe h3 {
font-size: 1.5em;
margin-bottom: 10px;
}
.membre-equipe img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-left: 20px;
}
.cv-container {
border: 1px solid #ddd;
padding: 15px;
}
.cv-container h4 {
font-size: 1.2em;
margin-bottom: 10px;
}
.cv-link {
display: block;
background-color: #ffa319;
color: #fff;
padding: 10px 15px;
text-decoration: none;
margin-top: 10px;
}
.cv-link:hover {
background-color: #9b620c;
}
.membre-equipe {
margin-bottom: 40px;
display: flex;
align-items: center;
}
.membre-equipe img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-right: 20px;
}
.membre-info {
flex-grow: 1;
}
.membre-info h3 {
font-size: 1.5em;
margin-bottom: 10px;
}
.cv-container {
margin-bottom: 25px;
}