_base.scss 494 B

12345678910111213141516171819202122232425262728293031323334
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. ::-webkit-scrollbar
  7. {
  8. width: 8px;
  9. height: 13px;
  10. background-color: #F5F5F5;
  11. }
  12. ::-webkit-scrollbar-track
  13. {
  14. // box-shadow: inset 0 0 6px red;
  15. border-radius: 10px;
  16. background-color: #F5F5F5;
  17. }
  18. ::-webkit-scrollbar-thumb
  19. {
  20. border-radius: 10px;
  21. // box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  22. background-color: #999;
  23. }
  24. .input_100{
  25. width: 100px;
  26. }
  27. .input_150{
  28. width: 150px;
  29. }
  30. .input_200{
  31. width: 200px;
  32. }