Files
bsmall/app.acss
2020-09-24 11:08:03 +08:00

75 lines
969 B
Plaintext
Executable File

/**
* Web唐明明
* 一个梦想做木雕手艺人的程序员
*/
page {
background: white;
font-size: 28rpx;
}
/* 按钮 */
.btn{
background: #ff6600;
border-color: #ff6600;
color: white;
font-size: 32rpx;
height: 95rpx;
line-height: 95rpx;
font-weight: bold;
}
.hover-btn{
background: #da5700;
}
/* 导航点击样式 */
.nav-hover{
background: rgba(0, 0, 0, .05);
}
/*
* 水平居中
*/
.pack-center {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-pack: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
/*
* 文字截取
*/
.nowrap {
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.nowrap-multi {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
/*
* 分页加载
*/
.pages-login{
text-align: center;
color: gray;
padding: 30rpx 0;
}