68 lines
1.0 KiB
Plaintext
68 lines
1.0 KiB
Plaintext
/**index.wxss**/
|
|
page {
|
|
background-color: #0052d9;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.head {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 2%;
|
|
margin-top: 0%;
|
|
padding-top: 5%;
|
|
padding-bottom: 3%;
|
|
align-items: center;
|
|
}
|
|
.title {
|
|
color: white;
|
|
font-size: 175%;
|
|
font-weight: bold;
|
|
margin-bottom: 2%;
|
|
}
|
|
.subtitle {
|
|
color: lightgray;
|
|
font-size: 85%;
|
|
margin-bottom: 5%;
|
|
}
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
background-color: white;
|
|
border-radius: 3%;
|
|
margin: 5%;
|
|
padding: 5%;
|
|
padding-bottom: 0%;
|
|
}
|
|
.content-avatar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.avatar {
|
|
width: 250rpx;
|
|
height: 250rpx;
|
|
}
|
|
|
|
.content-title {
|
|
font-weight: bold;
|
|
/* margin-bottom: 5%; */
|
|
}
|
|
|
|
.content-subtitle {
|
|
font-size: 85%;
|
|
margin-bottom: 5%;
|
|
padding: 3%;
|
|
}
|
|
|
|
.footer {
|
|
color: lightgray;
|
|
margin-top: 60%;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
|
|
|