mirror of https://github.com/xfarrow/blink
75 lines
1.0 KiB
CSS
75 lines
1.0 KiB
CSS
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);
|
|
position: relative;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
.job h3,
|
|
.education h3 {
|
|
color: #444;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin-top: 20px;
|
|
color: #666;
|
|
}
|
|
|
|
.profile-picture {
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 50%;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.edit-badge {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
background-color: #008CFF;
|
|
color: #fff;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
} |