77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
}
|
|
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 450px;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
.profile-picture {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-bottom: 15px;
|
|
border: 4px solid #3498db;
|
|
}
|
|
|
|
.profile-name {
|
|
color: #333;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.description {
|
|
color: #666;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
|
|
.links-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
|
|
.link-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-decoration: none;
|
|
color: white;
|
|
background-color: #3498db;
|
|
border: 2px solid #3498db;
|
|
padding: 15px 20px;
|
|
border-radius: 8px;
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
transition: background-color 0.3s, transform 0.1s;
|
|
}
|
|
|
|
|
|
.link-item:hover {
|
|
background-color: #2980b9;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
|
|
.icon-left {
|
|
margin-right: 15px;
|
|
font-size: 1.2em;
|
|
} |