Inital commit!

This commit is contained in:
Florian Sylvain
2023-11-09 23:25:01 +01:00
parent c0da6914c2
commit 28cd26b05c
13 changed files with 544 additions and 199 deletions
+52
View File
@@ -0,0 +1,52 @@
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
height: 8px;
width: 8px;
background: #ffffff;
cursor: pointer;
}
input[type=range]::-moz-range-thumb {
height: 36px;
width: 16px;
border-radius: 8px;
cursor: pointer;
}
input[type=range]::-ms-thumb {
height: 36px;
width: 16px;
border-radius: 8px;
background: #ffffff;
cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
cursor: pointer;
border-radius: 8px;
}
input[type=range]::-moz-range-track {
width: 100%;
height: 8px;
cursor: pointer;
border-radius: 8px;
}
input[type=range]::-ms-track {
width: 100%;
height: 8px;
cursor: pointer;
background: transparent;
border-color: transparent;
border-width: 16px 0;
color: transparent;
}
input[type=range]::-ms-fill-lower {
border-radius: 2.6px;
}
input[type=range]::-ms-fill-upper {
border-radius: 2.6px;
}