File size: 1,331 Bytes
edcdbb0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | .tabs {
scrollbar-color: #34373d #ffffff00;
scrollbar-width: 5px;
overflow-x: scroll;
padding-bottom: 5px;
user-select: none;
display: -webkit-inline-box;
}
.tabs::-webkit-scrollbar {
height: 5px;
}
.tabs::-webkit-scrollbar-track {
background: #ffffff00;
}
.tabs::-webkit-scrollbar-thumb {
background-color: #34373d;
border: none;
}
.tab {
display: none;
}
.tab.active{
display: grid;
}
.tab-switch, .tab-add {
display: none;
}
.tab-label, .tab-label-add{
display: flex;
height: 30px;
float: left;
margin-right: 4px;
border-radius: 0px 0px 10px 10px;
transition: 0.2s background-color;
background: #7d9dbd;
}
.tab-label-add {
background: #3b74ad;
width: 30px;
color: #fff;
border-radius: 15px;
font-size: 30;
text-align: center;
display: block;
line-height: 26px;
}
.tab-label > .tab-name, .tab-label-add > .tab-name{
display: flex;
align-items: center;
margin: 0 10px;
text-wrap: nowrap;
width: 64px;
overflow: hidden;
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.tab-label:has(.tab-switch:checked) {
background: #fff;
}
.template{
display: none;
} |