更多操作
(创建页面,内容为“.result{ justify-content: flex-start; flex-wrap: wrap; display: flex; } .btn{ color: #666; background-color: #EEE; border-color: #EEE; font-weight: 300; font-size: 16px; font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; text-decoration: none; text-align: center; line-height: 40px; height: 40px; padding: 0 40px; margin: 0; display: inline-block;…”) |
无编辑摘要 |
||
第46行: | 第46行: | ||
.yellow{ | .yellow{ | ||
background-color: yellow; | background-color: yellow; | ||
} | |||
.data-folded{ | |||
height: 40px; | |||
overflow: hidden; | |||
transition-duration: 0.2s; | |||
} | |||
.data-unfolded{ | |||
} | |||
.data-list-container{ | |||
flex-direction: column; | |||
width: 100%; | |||
justify-content: start; | |||
} | |||
.single-data-set{ | |||
margin-top: 0; | |||
margin-bottom: 10px; | |||
} | |||
.inner-data-container{ | |||
display: none; | |||
border-left:1.5px solid #b9b9b9; | |||
border-right: 1.5px solid #b9b9b9; | |||
} | |||
.single-data-container{ | |||
padding: 5px 20px 5px 20px; | |||
/*padding-left: 20px;*/ | |||
/*padding-right: 20px;*/ | |||
/*padding-top: 5px;*/ | |||
/*padding-bottom: 5px;*/ | |||
border-right: 0.5px solid #b9b9b9; | |||
border-left: 0.5px solid #b9b9b9; | |||
border-bottom: 0.5px solid #b9b9b9; | |||
} | |||
.single-header{ | |||
flex-wrap: wrap; | |||
box-sizing: border-box; | |||
background-color: #efefef; | |||
display: flex; | |||
height: 40px; | |||
flex-direction: row; | |||
align-items: center; | |||
padding-left: 25px; | |||
border-left: 4px solid #a4a4a4; | |||
overflow-y: scroll; | |||
} | |||
.title-id{ | |||
display: inline; | |||
margin-right: 25px; | |||
font-weight: bold; | |||
} | |||
.title-content{ | |||
display: inline; | |||
flex-grow: 1; | |||
} | |||
.title-content-time{ | |||
font-weight: lighter; | |||
font-size: 10px; | |||
display: inline; | |||
} | |||
.title-content-counter{ | |||
display: inline; | |||
} | |||
.list-title{ | |||
box-sizing: border-box; | |||
background-color: #f8f9fa; | |||
display: flex; | |||
height: 40px; | |||
flex-direction: row; | |||
align-items: center; | |||
padding-left: 25px; | |||
border: 0.5px solid #b9b9b9; | |||
} | |||
.list-title::after{ | |||
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-down" viewBox="0 0 16 16"> <path d="M3.204 5h9.592L8 10.481 3.204 5zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z"/> </svg>'); | |||
width: 30px; | |||
height: 15px; | |||
transition-duration: 0.2s; | |||
/*margin: 10px 5px 0 10px;*/ | |||
} | |||
.list-title:hover{ | |||
background-color: white; | |||
border: 1.5px solid #bebebe; | |||
transition-duration: 0.3s; | |||
} | |||
.list-title:hover::after{ | |||
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-caret-down" viewBox="0 0 20 20"> <path d="M3.204 5h9.592L8 10.481 3.204 5zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z"/> </svg>'); | |||
width: 32.5px; | |||
height: 15px; | |||
transition-duration: 0.3s; | |||
/*margin: 10px 5px 0 10px;*/ | |||
} | |||
.list-title:active{ | |||
border: 3px solid #0023e5; | |||
transition-duration: 0.1s; | |||
} | } |
2023年1月22日 (日) 14:23的版本
.result{
justify-content: flex-start;
flex-wrap: wrap;
display: flex;
}
.btn{
color: #666;
background-color: #EEE;
border-color: #EEE;
font-weight: 300;
font-size: 16px;
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
text-decoration: none;
text-align: center;
line-height: 40px;
height: 40px;
padding: 0 40px;
margin: 0;
display: inline-block;
appearance: none;
cursor: pointer;
border: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn-circle{
border-radius: 100%;
padding: 0 !important;
width: 40px;
}
.inline{
display: inline;
}
.red{
background-color: red;
}
.green{
background-color: greenyellow;
}
.yellow{
background-color: yellow;
}
.data-folded{
height: 40px;
overflow: hidden;
transition-duration: 0.2s;
}
.data-unfolded{
}
.data-list-container{
flex-direction: column;
width: 100%;
justify-content: start;
}
.single-data-set{
margin-top: 0;
margin-bottom: 10px;
}
.inner-data-container{
display: none;
border-left:1.5px solid #b9b9b9;
border-right: 1.5px solid #b9b9b9;
}
.single-data-container{
padding: 5px 20px 5px 20px;
/*padding-left: 20px;*/
/*padding-right: 20px;*/
/*padding-top: 5px;*/
/*padding-bottom: 5px;*/
border-right: 0.5px solid #b9b9b9;
border-left: 0.5px solid #b9b9b9;
border-bottom: 0.5px solid #b9b9b9;
}
.single-header{
flex-wrap: wrap;
box-sizing: border-box;
background-color: #efefef;
display: flex;
height: 40px;
flex-direction: row;
align-items: center;
padding-left: 25px;
border-left: 4px solid #a4a4a4;
overflow-y: scroll;
}
.title-id{
display: inline;
margin-right: 25px;
font-weight: bold;
}
.title-content{
display: inline;
flex-grow: 1;
}
.title-content-time{
font-weight: lighter;
font-size: 10px;
display: inline;
}
.title-content-counter{
display: inline;
}
.list-title{
box-sizing: border-box;
background-color: #f8f9fa;
display: flex;
height: 40px;
flex-direction: row;
align-items: center;
padding-left: 25px;
border: 0.5px solid #b9b9b9;
}
.list-title::after{
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-down" viewBox="0 0 16 16"> <path d="M3.204 5h9.592L8 10.481 3.204 5zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z"/> </svg>');
width: 30px;
height: 15px;
transition-duration: 0.2s;
/*margin: 10px 5px 0 10px;*/
}
.list-title:hover{
background-color: white;
border: 1.5px solid #bebebe;
transition-duration: 0.3s;
}
.list-title:hover::after{
content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-caret-down" viewBox="0 0 20 20"> <path d="M3.204 5h9.592L8 10.481 3.204 5zm-.753.659 4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z"/> </svg>');
width: 32.5px;
height: 15px;
transition-duration: 0.3s;
/*margin: 10px 5px 0 10px;*/
}
.list-title:active{
border: 3px solid #0023e5;
transition-duration: 0.1s;
}