81 lines
1.5 KiB
CSS
81 lines
1.5 KiB
CSS
body {
|
|
background: linear-gradient(180deg, #E9ECEF 0%, #F8F9FA 100%);
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
}
|
|
|
|
.profile-container {
|
|
max-width: 680px;
|
|
margin-top: 3rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.profile-picture {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
border: 4px solid #fff;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.bio-text {
|
|
font-size: 1.1rem;
|
|
color: #495057;
|
|
}
|
|
|
|
.bio-text a {
|
|
color: #0d6efd;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.bio-text a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.link-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: #fff;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0.75rem;
|
|
padding: 1rem;
|
|
text-decoration: none;
|
|
color: #212529;
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
text-align: left;
|
|
}
|
|
|
|
.link-btn:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
|
|
color: #000;
|
|
}
|
|
|
|
.link-icon {
|
|
font-size: 1.5rem;
|
|
width: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
.link-text-container {
|
|
flex-grow: 1;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.link-title {
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.1rem;
|
|
}
|
|
|
|
.link-description {
|
|
font-size: 0.9rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.arrow-icon {
|
|
font-size: 1.5rem;
|
|
color: #6c757d;
|
|
}
|