Panel_number-box.css 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .Panel_number-box {
  2. border: #e5e5e5 solid 1px;
  3. display: inline-block;
  4. overflow: hidden;
  5. }
  6. .Panel_number-box input[type='text'] {
  7. height: 30px;
  8. border-top: none;
  9. border-bottom: none;
  10. border-left: #e5e5e5 solid 1px;
  11. border-right: #e5e5e5 solid 1px;
  12. margin: 0;
  13. text-align: center;
  14. width: 40px;
  15. outline: none;
  16. padding: 0 5px;
  17. float: left;
  18. line-height: 30px;
  19. }
  20. .Panel_number-box input[type='button'] {
  21. height: 30px;
  22. width: 40px;
  23. float: left;
  24. border: none;
  25. outline: none;
  26. background-color: #f3f3f3;
  27. line-height: 30px;
  28. cursor: pointer;
  29. padding: 0;
  30. }
  31. .Panel_number-box input[type='button']:hover {
  32. background-color: #f9f9f9;
  33. }
  34. .Panel_number-box input[type='button']:active {
  35. background-color: #f6f6f6;
  36. }