2024-02-20 22:16:54 +01:00
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #f7f7f7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 20px auto;
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
2024-02-29 15:10:57 +01:00
|
|
|
position: relative;
|
2024-02-20 22:16:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-03-20 16:40:35 +01:00
|
|
|
.job h3,
|
|
|
|
.education h3 {
|
2024-02-20 22:16:54 +01:00
|
|
|
color: #444;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
|
|
|
.profile-picture {
|
2024-02-29 11:05:07 +01:00
|
|
|
width: 150px;
|
2024-02-20 22:16:54 +01:00
|
|
|
height: 150px;
|
2024-02-29 11:05:07 +01:00
|
|
|
border-radius: 50%;
|
2024-02-20 22:16:54 +01:00
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-02-29 15:10:57 +01:00
|
|
|
.edit-badge {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
background-color: #008CFF;
|
|
|
|
color: #fff;
|
|
|
|
padding: 5px 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
cursor: pointer;
|
2024-03-20 16:40:35 +01:00
|
|
|
}
|