61 lines
804 B
CSS
61 lines
804 B
CSS
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;
|
|
} |