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 602B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 #ccc;
  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 input[type=url],
  23. #parts .part input[type=text] {
  24. padding-left: 6px;
  25. }
  26. #parts .part button {
  27. width: 75px;
  28. float: right;
  29. }
  30. #parts .part button.link {
  31. width: 100%;
  32. height: 42px;
  33. float: none;
  34. }
  35. #parts .part input,
  36. #parts .part button {
  37. height: 34px;
  38. line-height: 0px;
  39. }