103 lines
1.3 KiB
CSS
103 lines
1.3 KiB
CSS
body,
|
|
html {
|
|
width: 100%;
|
|
margin: 0;
|
|
background-color: #777;
|
|
color: #fff;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
.header {
|
|
width: 100vw;
|
|
padding: 30px 40px;
|
|
background: #f7f7f7;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 25px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
border-bottom: 1px solid #e5e5e5;
|
|
color: #000000;
|
|
}
|
|
|
|
.avatarWrapper {
|
|
width: 120px;
|
|
height: 120px;
|
|
min-width: 120px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #ddd;
|
|
}
|
|
|
|
.avatarImg {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.avatarPlaceholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
background: #ccc;
|
|
font-size: 42px;
|
|
font-weight: bold;
|
|
color: #555;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.userInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.name {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.nickname {
|
|
font-size: 18px;
|
|
color: #666;
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 100vw;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0%;
|
|
/* margin: 25px auto; */
|
|
/* padding: 0 20px; */
|
|
}
|
|
|
|
.content {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.desc {
|
|
font-size: 18px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.created {
|
|
font-size: 16px;
|
|
color: #888;
|
|
}
|
|
|
|
.loader,
|
|
.error {
|
|
text-align: center;
|
|
margin-top: 40px;
|
|
font-size: 18px;
|
|
}
|