初始提交

This commit is contained in:
wanyongkang
2020-10-04 10:30:08 +08:00
commit 3193537726
441 changed files with 171716 additions and 0 deletions

37
static/css/layout.css Normal file
View File

@@ -0,0 +1,37 @@
.layout-tr-top,
.layout-tr-between,
.layout-tr-center,
.layout-tr{
display:flex;
align-items: center;
}
.layout-tr-top{
align-items: flex-start;
}
.layout-tr-center{
justify-content: center;
}
.layout-tr-between{
justify-content: space-between;
}
.layout-td{
flex:1;
}
.layout-box::after{
content:'';
display:table;
clear: both;
}
.glb-text-of{
width:100%;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
/* .glb-text-clamp{
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
} */