Advertisement
lexquarkie

3

Mar 2nd, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. html,body{
  2. margin:0;
  3. padding:0;
  4. }
  5. body{
  6. width:450px;
  7. height:300px;
  8. font-size:16px;
  9. font-family:"Tahoma", sans-serif;
  10. color:black;
  11. background:white;
  12. }
  13. .range-filter{
  14. padding-top:10px;
  15. width:240px;
  16. margin:auto;
  17. margin-bottom:10px;
  18. }
  19. .range-controls{
  20. position:relative;
  21. height:80px;
  22. margin-bottom:15px;
  23. padding:0 30px;
  24. background:#34495e;
  25. border-radius:5px;
  26. overflow:hidden;
  27. }
  28. .scale{
  29. margin-top:39px;
  30. height:2px;
  31. background:#d7dcde;
  32. }
  33. .bar{
  34. height:2px;
  35. background:#00ca74;
  36. }
  37. .toggle{
  38. position:absolute;
  39. top:30px;
  40. left:30px;
  41. width:4px;
  42. height:4px;
  43. border:8px solid white;
  44. background:#ababab;
  45. cursor:pointer;
  46. border-radius:50%;
  47. }
  48. .min-toggle{
  49. left:70px;
  50. }
  51. .max-toggle{
  52. left:165px;
  53. }
  54.  
  55. .min-price{
  56. width:55px;
  57. padding:8px 10px;
  58. margin-left:10px;
  59. border:none;
  60. background:#34495e;
  61. font-size:16px;
  62. font-family:"Tahoma", sans-serif;
  63. text-align:center;
  64. color:#283136;
  65. border-radius:5px;
  66. color:white;
  67. }
  68. .price-controls input:nth-child(2){
  69. margin-right:14px;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement