SlidngScale.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .slidng{
  2. position: relative;
  3. }
  4. .value{
  5. width: 750px;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. color: black;
  10. font-size: 50px;
  11. height: 50px;
  12. text-align: center;
  13. }
  14. .scroll{
  15. width: 750px;
  16. height: 300px;
  17. background-color: pink;
  18. position: relative;
  19. }
  20. .scrollContent{
  21. display: flex;
  22. flex-direction: row;
  23. }
  24. .scrollPadding{
  25. width: 375px;
  26. height: 30px;
  27. background-color: white;
  28. flex-shrink: 0;
  29. }
  30. .content{
  31. height: 30px;
  32. background-color: blue;
  33. flex-shrink: 0;
  34. display: flex;
  35. flex-direction: row;
  36. }
  37. .slidng_item{
  38. display: flex;
  39. flex-shrink: 0;
  40. box-sizing: border-box;
  41. // width: 2px;
  42. height: 15px;
  43. background-color: white;
  44. // margin-right: 18px;
  45. }
  46. .slidng_item_big{
  47. display: flex;
  48. flex-shrink: 0;
  49. box-sizing: border-box;
  50. // width: 2px;
  51. height: 30px;
  52. background-color: white;
  53. // margin-right: 18px;
  54. position: relative;
  55. }
  56. .slidng_item_middle{
  57. display: flex;
  58. flex-shrink: 0;
  59. box-sizing: border-box;
  60. // width: 2px;
  61. height: 25px;
  62. background-color: white;
  63. // margin-right: 18px;
  64. position: relative;
  65. }
  66. .slidng_text{
  67. position: absolute;
  68. left: -25px;
  69. width: 50px;
  70. // right: 30px;
  71. top: 30px;
  72. text-align: center;
  73. color: black;
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. background-color: oldlace;
  78. font-size: 20px;
  79. }
  80. .center_line{
  81. width: 2px;
  82. height: 50px;
  83. background-color: red;
  84. position: absolute;
  85. left: 374px;
  86. top: 50px;
  87. }
  88. .demo2{
  89. width: 750px;
  90. height: 40px;
  91. background-color: pink;
  92. flex-shrink: 0;
  93. }