Files
pad-nl-three-uni/common/style/reset.css

200 lines
2.7 KiB
CSS
Raw Normal View History

2024-02-20 16:29:38 +08:00
* {
padding: 0;
margin: 0;
list-style: none;
font-style: normal;
text-decoration: none;
border: none;
outline: none;
font-family: uniicons, Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, sans-serif;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-webkit-tap-highlight-color:transparent;
-webkit-font-smoothing: antialiased;
}
body, html {
-webkit-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}
input[type="button"], input[type="submit"], input[type="search"], input[type="reset"], textarea, select{
-webkit-appearance: none;
appearance: none;
}
2024-02-21 18:08:27 +08:00
.allwidth {
width: 100%;
}
2024-02-20 16:29:38 +08:00
.relative {
position: relative;
}
.absolute {
position: absolute;
}
2024-02-20 16:29:38 +08:00
.hide {
display: none;
}
.vhide {
visibility:hidden;
}
.show {
display: block;
}
.overauto {
overflow: auto !important;
}
2024-02-20 16:29:38 +08:00
.ellipsis{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2024-02-21 18:08:27 +08:00
}
2024-10-24 16:51:49 +08:00
.underline {
text-decoration: underline;
}
2024-02-21 18:08:27 +08:00
.flexcol {
flex-direction: column;
}
.flexstart {
align-items: flex-start !important;
}
.jcflexstart {
justify-content: flex-start !important;
}
.jcflexend {
justify-content: flex-end !important;
}
2024-02-27 17:40:30 +08:00
.jcenter {
justify-content: center !important;
}
2024-02-21 18:08:27 +08:00
.zd-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.zd-col-24 {
width: 100%;
}
.zd-col-23 {
width: 95.83333%
}
.zd-col-22 {
width: 91.66667%
}
.zd-col-21 {
width: 87.5%
}
.zd-col-20 {
width: 83.33333%
}
.zd-col-19 {
width: 79.16667%
}
.zd-col-18 {
width: 75%
}
.zd-col-17 {
width: 70.83333%
}
.zd-col-16 {
width: 66.66667%
}
.zd-col-15 {
width: 62.5%
}
.zd-col-14 {
width: 58.33333%
}
.zd-col-13 {
width: 54.16667%
}
.zd-col-12 {
width: 50%;
}
.zd-col-11 {
width: 45.83333%
}
.zd-col-10 {
width: 41.66667%
}
.zd-col-9 {
width: 37.5%
}
.zd-col-8 {
width: 33.33333%
}
.zd-col-7 {
width: 29.16667%
}
.zd-col-6 {
width: 25%
}
.zd-col-5 {
width: 20.83333%
}
.zd-col-4 {
width: 16.66667%
}
.zd-col-3 {
width: 12.5%
}
.zd-col-2 {
width: 8.33333%
}
.zd-col-1 {
width: 4.16667%
}
2024-05-28 10:39:02 +08:00
.mgl0 {
margin-left: 0 !important;
}
2024-05-30 16:34:29 +08:00
.mgl10 {
margin-left: 10px;
}
2024-06-06 18:26:25 +08:00
.mgl52 {
margin-left: 52px;
}
2024-02-21 18:08:27 +08:00
.mgr5 {
margin-right: 5px;
2024-02-23 18:03:59 +08:00
}
2024-03-04 15:15:15 +08:00
.mgt10 {
margin-top: 10px
2024-02-23 18:03:59 +08:00
}
2024-03-04 15:15:15 +08:00
.mgt20 {
margin-top: 20px
}
.mgb20 {
margin-bottom: 20px
2024-02-27 17:40:30 +08:00
}
2024-05-27 20:20:56 +08:00
.pd0 {
padding: 0 !important;
}
.pd20 {
padding: 10px 0 0 0 !important;
2024-05-27 20:20:56 +08:00
}
2024-02-27 17:40:30 +08:00
.popshow {
2024-04-24 16:19:41 +08:00
transform: translateY(-50%);
2024-02-27 17:40:30 +08:00
}
.pophide {
2024-04-24 16:19:41 +08:00
transform: translateY(100vh);
2024-04-22 15:41:43 +08:00
}
.scale8 {
transform: scale(0.8)
2024-04-22 15:47:24 +08:00
}
.nowrap{
white-space: nowrap;
2024-04-25 09:56:31 +08:00
}
.sticky {
position: sticky;
top: 0;
z-index: 10;
2024-05-30 16:34:29 +08:00
}
.ellipsis-multiline {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 定义显示的行数 */
overflow: hidden;
text-overflow: ellipsis;
2024-02-20 16:29:38 +08:00
}