mirror of
https://github.com/ION606/bluesky-client.git
synced 2026-05-14 21:26:54 +00:00
61 lines
950 B
CSS
61 lines
950 B
CSS
.profile-container {
|
|
width: 98%;
|
|
margin: auto;
|
|
/* max-width: 600px; */
|
|
background-color: #2e003e;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* banner section */
|
|
.banner img {
|
|
width: 100%;
|
|
height: 150px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* profile content */
|
|
.profile-content {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
border: 3px solid #aa00ff;
|
|
margin-top: -50px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8em;
|
|
margin: 10px 0;
|
|
color: #d4b0ff;
|
|
}
|
|
|
|
p {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.counts {
|
|
margin: 15px 0;
|
|
font-size: 0.9em;
|
|
color: #b399ff;
|
|
}
|
|
|
|
.link {
|
|
color: #e6e6ff;
|
|
background-color: #6b006b;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.link:hover {
|
|
background-color: #aa00ff;
|
|
} |