Ajout du CV (HTML/CSS)
This commit is contained in:
61
style.css
Normal file
61
style.css
Normal file
@@ -0,0 +1,61 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--main-color: #1f3c88;
|
||||
}
|
||||
|
||||
.cv-container {
|
||||
max-width: 1000px;
|
||||
min-height: 800px;
|
||||
display: flex;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.col-left {
|
||||
width: 35%;
|
||||
background-color: var(--main-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.col-right {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.text-main {
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
section {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 18px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ul li {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user