blink/frontend/vanilla/css/profile.css

63 lines
868 B
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);
}
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; /* Adjust size as needed */
height: 150px;
border-radius: 50%; /* Make it circular */
margin-bottom: 10px;
}