You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
624 B
43 lines
624 B
@import "../tool/tool";
|
|
|
|
// body{
|
|
// background-image: url(/public/image/gezi.png);
|
|
// background-size: 20px 20px;
|
|
// }
|
|
|
|
.avatar{
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.page{
|
|
min-height: 100%;
|
|
padding-top: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
/*
|
|
用户信息样式
|
|
*/
|
|
.userinfo{
|
|
display: flex;
|
|
align-items: center;
|
|
width: 500px;
|
|
@include media(xs,sm) {
|
|
width: 100%;
|
|
}
|
|
.user_detail{
|
|
flex: 1;
|
|
margin-left: 10px;
|
|
.user_name{
|
|
font-size: 1.67em; // 20px/12
|
|
}
|
|
.user_desc{
|
|
text-indent: 10px; //
|
|
padding-top: 5px;
|
|
@include ellipsis(3)
|
|
}
|
|
}
|
|
}
|
|
|
|
|