34 lines
638 B
Plaintext
34 lines
638 B
Plaintext
/* pages/personal.wxss */
|
|
.grid{
|
|
display: grid;
|
|
background-color: white;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
display: flex;
|
|
text-align: center;
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
.grid-item{
|
|
flex:1;
|
|
width: 25%;
|
|
}
|
|
.icon{
|
|
width: 50px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(to right,#91b2ff,#136dff);
|
|
margin: 10px auto;
|
|
}
|
|
.iconfont{
|
|
font-size: 26px;
|
|
color: white;
|
|
}
|
|
.icon-sign{
|
|
background: linear-gradient(to right,#ddba7a,#ff9a31);
|
|
|
|
}
|
|
.icon-game{
|
|
background: linear-gradient(to right,#ffaf8f,#ff6931);
|
|
|
|
}
|
|
} |