12345678910111213141516171819202122232425262728293031323334 |
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- ::-webkit-scrollbar
- {
- width: 8px;
- height: 13px;
- background-color: #F5F5F5;
- }
- ::-webkit-scrollbar-track
- {
- // box-shadow: inset 0 0 6px red;
- border-radius: 10px;
- background-color: #F5F5F5;
- }
- ::-webkit-scrollbar-thumb
- {
- border-radius: 10px;
- // box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color: #999;
- }
- .input_100{
- width: 100px;
- }
- .input_150{
- width: 150px;
- }
- .input_200{
- width: 200px;
- }
|