commit.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .commit_compare {
  2. display: flex;
  3. padding: 5px;
  4. line-height: 1.8em;
  5. border-bottom: 1px solid var(--border-line-color);
  6. }
  7. .commit_compare .pali {
  8. flex: 3;
  9. }
  10. .commit_compare .src_text {
  11. flex: 3;
  12. }
  13. .commit_compare .dest_text {
  14. flex: 3;
  15. }
  16. del {
  17. color: red;
  18. }
  19. ins {
  20. background-color: greenyellow;
  21. text-decoration: unset;
  22. }
  23. .commit_head {
  24. display: flex;
  25. justify-content: space-around;
  26. padding-bottom: 10px;
  27. margin-bottom: 10px;
  28. border-bottom: 1px solid var(--border-line-color);
  29. }
  30. .commit_step {
  31. text-align: center;
  32. }
  33. .commit_step .num {
  34. font-size: 25px;
  35. font-weight: 700;
  36. color: var(--btn-color);
  37. width: 50px;
  38. line-height: 45px;
  39. text-align: center;
  40. border: 2px solid var(--link-color);
  41. border-radius: 99px;
  42. }
  43. .step1 > .commit_step_1 > .num {
  44. border-color: var(--link-hover-color);
  45. color: var(--main-color);
  46. }
  47. .step2 > .commit_step_1 > .num,
  48. .step2 > .commit_step_2 > .num {
  49. border-color: var(--link-hover-color);
  50. color: var(--main-color);
  51. }
  52. .step3 > .commit_step_1 > .num,
  53. .step3 > .commit_step_2 > .num,
  54. .step3 > .commit_step_3 > .num {
  55. border-color: var(--link-hover-color);
  56. color: var(--main-color);
  57. }
  58. .commit_win_inner {
  59. padding: 1em;
  60. }
  61. .commit_win_inner #step1 {
  62. display: flex;
  63. flex-direction: column;
  64. }
  65. .commit_win_inner .channel {
  66. font-size: 110%;
  67. padding: 5px, 5px, 5px, 20px;
  68. }