added admin interface

This commit is contained in:
kicap1992
2021-12-21 00:25:43 +08:00
parent 9adf18c7b9
commit a25104fadc
3496 changed files with 280326 additions and 7 deletions

View File

@ -0,0 +1,72 @@
.range {
display: inline-block;
margin: 36px 20px 20px
}
input[type=range] {
-webkit-appearance: none;
position: relative
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 2px;
border: none;
border-radius: 3px
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 12px;
width: 12px;
border-radius: 510%;
background: #141414;
border: 2px solid #515151;
margin-top: -5px;
cursor: pointer
}
.focused::-webkit-slider-thumb {
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.15)
}
.clicked::-webkit-slider-thumb {
-webkit-transform: scale(1.5)
}
.disabled::-webkit-slider-thumb {
-webkit-transform: scale(0.9);
box-shadow: 0 0 0 3px #141414;
background: #515151 !important;
border-color: #515151 !important
}
input[type=range]:focus { outline: none }
.rangeM input[type=range].disabled::-webkit-slider-runnable-track {
background: #515151!important
}
.rangeM input[type=range]::-webkit-slider-thumb {
background: #3f51b5;
border-color: #3f51b5
}
.range:hover input[type=range]:before {
color: white;
content: '50';
position: absolute;
font-family: Roboto Slab;
top: -49px;
background: #3f51b5;
padding: 8px 0 3px;
font-size: 14px;
width: 30px;
text-align: center;
border-radius: 100% 100% 0 0
}
.range:hover input[type=range]:after {
content: '';
position: absolute;
top: -19px;
left: 50px;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 8px solid #3f51b5;
font-family: Roboto Slab
}