index.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @charset "utf-8";
  2. #exercise {
  3. .code-module {
  4. padding: 80px 250px;
  5. text-align: center;
  6. .title {
  7. font-size: 18px;
  8. margin-bottom: 24px;
  9. }
  10. .input-block {
  11. margin-bottom: 24px;
  12. .input {
  13. width: 350px;
  14. input {
  15. border-top-left-radius: 22px;
  16. border-bottom-left-radius: 22px;
  17. }
  18. }
  19. .button {
  20. width: 150px;
  21. height: 44px;
  22. line-height: 28px;
  23. border-top-right-radius: 22px;
  24. border-bottom-right-radius: 22px;
  25. }
  26. .error {
  27. color: #ff7554;
  28. text-align: left;
  29. }
  30. }
  31. .tip {
  32. .left {
  33. float: left;
  34. }
  35. .right {
  36. float: right;
  37. }
  38. }
  39. }
  40. .work-body {
  41. .work-nav {
  42. margin-bottom: 20px;
  43. .left {
  44. display: inline-block;
  45. padding-left: 5px;
  46. font-size: 16px;
  47. font-weight: 600;
  48. }
  49. .right {
  50. float: right;
  51. }
  52. }
  53. }
  54. .sentence-code {
  55. margin-top: -10px;
  56. margin-bottom: 10px;
  57. a {
  58. margin: 3px;
  59. }
  60. }
  61. .bottom-info {
  62. background: #fafafa;
  63. padding: 50px 0;
  64. .content {
  65. .other-answer-carousel {
  66. background: none;
  67. padding-top: 0;
  68. }
  69. }
  70. }
  71. }
  72. .code-module-modal {
  73. .title {
  74. height: 38px;
  75. line-height: 38px;
  76. font-size: 18px;
  77. border-bottom: 1px solid #fff;
  78. font-weight: bold;
  79. }
  80. .desc {
  81. text-align: center;
  82. margin-top: 20px;
  83. margin-bottom: 20px;
  84. height: 100px;
  85. .input {
  86. width: 100%;
  87. background: #fff;
  88. input {
  89. background: #f7f7f7;
  90. border: none;
  91. }
  92. }
  93. .tip {
  94. .left {
  95. float: left;
  96. }
  97. .right {
  98. float: right;
  99. }
  100. }
  101. .error {
  102. color: #ff7554;
  103. text-align: left;
  104. width: 50%;
  105. float: left;
  106. }
  107. }
  108. .btn-list {
  109. text-align: center;
  110. margin-bottom: 15px;
  111. .btn {
  112. display: inline-block;
  113. width: 70px;
  114. line-height: 35px;
  115. height: 35px;
  116. border: 1px solid #fff;
  117. background: #006DAA;
  118. cursor: pointer;
  119. }
  120. .btn:hover {
  121. background: darken(#006DAA, 5);
  122. }
  123. }
  124. }