1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

67 lines
1.0 KiB
Plaintext

/* pages/person/person.wxss */
#container {
min-height: 100vh;
width: 100%;
background-color: #F5F5F5;
margin: 0;
padding: 0;
/* padding-top: 20px; */
}
.top-image {
width: 100vw;
height: 250px;
margin-bottom: -102px;
z-index: -100;
/* position: absolute; */
}
.cell-group {
background-color: #FFFFFF;
margin: 0 10px;
padding: 0;
margin-bottom: 20px;
border-radius: 10px;
z-index: 100;
position: relative;
}
.user-profile {
display: grid;
grid-template-columns: 64px 1fr;
padding: 12px 20px;
place-items: center;
gap: 25px;
}
.user-profile .avatar-selector {
width: 64px;
height: 64px;
margin: 0;
padding: 0;
}
.user-profile .avatar {
width: 64px;
height: 64px;
}
.user-profile .nickname {
font-size: 18px;
}
.cell-item {
height: 48px;
line-height: 48px;
padding: 0 20px;
font-size: 18px;
}
.cell-sept {
border-bottom: 1px rgb(170, 170, 170) solid;
}
.cell:nth-last-child(1) .cell-sept {
display: none;
}