34 lines
575 B
CSS
34 lines
575 B
CSS
/* 论坛主页 */
|
|
.custom-wrap{
|
|
display: flex;
|
|
align-items: center
|
|
}
|
|
.custom-wrap .wrap-name{
|
|
color:#333;
|
|
font-size: 16px;
|
|
}
|
|
.custom-wrap .custom-img{
|
|
width:36px;
|
|
height:36px;
|
|
margin-right: 8px;
|
|
}
|
|
/* 版块主页 */
|
|
.moderatorInfo{
|
|
width: 82px;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction:column;
|
|
align-items: center;
|
|
margin:10px 2px 20px 2px;
|
|
}
|
|
.moderatorInfo .custom-img{
|
|
height: 48px;
|
|
width: 48px;
|
|
}
|
|
.moderatorInfo .wrap-name{
|
|
display: block;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
max-width: 80px;
|
|
} |