You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 425B

1234567891011121314151617181920212223242526272829303132
  1. * {
  2. box-sizing: border-box;
  3. }
  4. #parts {
  5. max-width: 600px;
  6. margin: auto;
  7. }
  8. #parts .part {
  9. border-bottom: 1px solid #eee;
  10. padding: 20px 10px;
  11. padding-top: 17px;
  12. }
  13. #parts .part:last-child {
  14. border-bottom: none;
  15. }
  16. #parts .part .name {
  17. margin-bottom: 6px;
  18. }
  19. #parts .part input {
  20. width: calc(100% - 80px);
  21. }
  22. #parts .part button {
  23. width: 75px;
  24. float: right;
  25. }
  26. #parts .part input,
  27. #parts .part button {
  28. height: 25px;
  29. }