注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
- Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5或Ctrl-R(Mac为⌘-R)
- Google Chrome:按Ctrl-Shift-R(Mac为⌘-Shift-R)
- Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
- Opera:按 Ctrl-F5。
.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{
margin-left: 3px;
font-weight: lighter;
font-size: 13px;
display: inline;
}
.title-content-counter{
margin-left: 3px;
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;
}