design with image

This commit is contained in:
hamid zarghami
2026-06-08 16:31:07 +03:30
parent ad06b0c8fe
commit 09babad479
3 changed files with 212 additions and 14 deletions
+33
View File
@@ -102,3 +102,36 @@ tbody tr:nth-child(odd) {
backdrop-filter: blur(44px);
}
.design-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 12px;
height: 12px;
border-radius: 50%;
background: black;
cursor: pointer;
margin-top: -5px;
}
.design-slider::-moz-range-thumb {
width: 12px;
height: 12px;
border-radius: 50%;
background: black;
border: none;
cursor: pointer;
}
.design-slider::-webkit-slider-runnable-track {
-webkit-appearance: none;
appearance: none;
background: transparent;
height: 1px;
}
.design-slider::-moz-range-track {
background: transparent;
height: 1px;
border: none;
}