|
|
| (未显示同一用户的6个中间版本) |
| 第1行: |
第1行: |
| /* [[Category:CSS页面]] */ | | /* [[Category:CSS页面]] */ |
| /* 沒有前綴的給叫 stgt 的 class */ | | /* 沒有前綴的給叫 stgt 的 class */ |
| /*
| |
| .stgt { | | .stgt { |
| width: auto; | | width: auto; |
| 第16行: |
第15行: |
| overflow:auto; | | overflow:auto; |
| display:block; | | display:block; |
| flex-wrap: wrap;
| |
| }
| |
| */
| |
|
| |
| /*收纳表模版开始*/
| |
| .stgt {
| |
| width: 95%;
| |
| max-width:100%;
| |
| box-sizing: border-box;
| |
| }
| |
| .stgt.hori {
| |
| display: flex;
| |
| }
| |
| .stab {
| |
| overflow-x:auto;
| |
| display: flex;
| |
| flex-wrap:nowrap;
| |
| overflow-y:hidden;
| |
| padding: 1%;
| |
| gap: 4px;
| |
| white-space:nowrap;
| |
| max-width:100%;
| |
| }
| |
| .stab.hori {
| |
| display: inline-grid;
| |
| height: 400px;
| |
| overflow-y: auto;
| |
| width: 20%;
| |
| }
| |
| .sitm {
| |
| flex: 0 0 auto;
| |
| width:auto;
| |
| min-width:10px;
| |
| display:inline-block;
| |
| font-weight: 700;
| |
| }
| |
| .ctab {
| |
| margin: 0;
| |
| padding: 1%;
| |
| margin-left: 0;
| |
| width: inherit;
| |
| }
| |
| .ctab.hori {
| |
| display: inline-grid;
| |
| height: 400px;
| |
| overflow-y: auto;
| |
| width: 60%;
| |
| }
| |
| /*收纳表模版结束*/
| |
|
| |
| .tabs-container {
| |
| width: 100%;
| |
| margin-bottom:20px;
| |
| }
| |
|
| |
| .tabs-pages {
| |
| display: flex !important;
| |
| list-style:none;
| |
| background-color:#e2e9f6;
| |
| border-radius:4px;
| |
| }
| |
|
| |
| .tab:focus,
| |
| .tab:hover {
| |
| cursor: pointer;
| |
| }
| |
|
| |
| .tab {
| |
| padding: 0.5em 1em;
| |
| color: #244786;
| |
| font-size:16px;
| |
| margin:0 0 0 1em;
| |
| }
| |
|
| |
| .tab:hover {
| |
| background-color: #a4c2f8;
| |
| }
| |
|
| |
| .tab.active {
| |
| background-color: #c3d8fc;
| |
| }
| |
|
| |
| .tabs-contents {
| |
|
| |
| width: 100%;
| |
| height: auto;
| |
| }
| |
|
| |
| .tab-c {
| |
| display: none;
| |
| width: 100%;
| |
| height: auto;
| |
| }
| |
|
| |
| .tab-c.active {
| |
| display: block;
| |
| }
| |
|
| |
| .inner-content {
| |
| padding: .5em;
| |
| column-count:3;
| |
| border:solid #e2e9f6;
| |
| border-radius:4px;
| |
| border-width:0 3px 3px;
| |
| } | | } |
2026年2月21日 (六) 14:31的最新版本
/* [[Category:CSS页面]] */
/* 沒有前綴的給叫 stgt 的 class */
.stgt {
width: auto;
}
.sitm {
width: 35%;
display:inline-block;
white-space: normal;
}
.stab {
white-space: nowrap;
overflow:auto;
display:block;
}