index.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. }
  68. }
  69. }
  70. }
  71. .code-module-modal {
  72. .title {
  73. height: 38px;
  74. line-height: 38px;
  75. font-size: 18px;
  76. border-bottom: 1px solid #fff;
  77. font-weight: bold;
  78. }
  79. .desc {
  80. text-align: center;
  81. margin-top: 20px;
  82. margin-bottom: 20px;
  83. height: 100px;
  84. .input {
  85. width: 100%;
  86. background: #fff;
  87. input {
  88. background: #f7f7f7;
  89. border: none;
  90. }
  91. }
  92. .tip {
  93. .left {
  94. float: left;
  95. }
  96. .right {
  97. float: right;
  98. }
  99. }
  100. .error {
  101. color: #ff7554;
  102. text-align: left;
  103. width: 50%;
  104. float: left;
  105. }
  106. }
  107. .btn-list {
  108. text-align: center;
  109. margin-bottom: 15px;
  110. .btn {
  111. display: inline-block;
  112. width: 70px;
  113. line-height: 35px;
  114. height: 35px;
  115. border: 1px solid #fff;
  116. background: #006DAA;
  117. cursor: pointer;
  118. }
  119. .btn:hover {
  120. background: darken(#006DAA, 5);
  121. }
  122. }
  123. }