frontend/src/assets/comm.css

79 lines
1014 B
CSS
Raw Normal View History

/* flex布局 */
.dflexaj{
display: flex;
align-items: center;
justify-content: space-between;
}
2021-11-05 16:52:02 +08:00
.dflexj{
display: flex;
justify-content: space-between;
}
.dflexajc{
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
}
2021-11-02 09:32:55 +08:00
.dflexajcs{
display: flex;
justify-content:flex-start;
}
.dflexa{
display: flex;
align-items: center;
}
.dflexs{
display: flex;
justify-content: flex-start;
flex-direction: column;
}
/* 怪异盒子 */
.boxs{
box-sizing: border-box;
}
/* 边距 */
.ml15{
margin-left: 15px;
}
.mr15{
margin-right: 15px;
}
2021-10-26 16:01:18 +08:00
.mt15{
margin-top: 15px;
}
.pd24{
padding: 24px;
}
.pd15{
padding: 15px;
}
2021-11-02 09:32:55 +08:00
.pdr200{
padding: 200px;
}
2021-10-28 09:32:19 +08:00
2021-10-26 16:01:18 +08:00
.pdtrl15{
padding: 15px 15px 9px;
}
.pdtrl20{
padding: 20px 20px 14px;
}
.mt5{
margin-top: 5px;
}
html,body,h1,h2,h3,h4,h5,h6,p,ul,li,dl,dd,dt,ol,input{
padding: 0;
margin: 0;
}
/* 颜色 */
.col31{
2021-10-26 17:58:29 +08:00
color: #313233;
2021-11-02 09:32:55 +08:00
}
.maincenter{
width: 98%;
margin: 0 auto;
min-height: 600px;
2021-10-26 16:01:18 +08:00
}